summaryrefslogtreecommitdiff
path: root/chef-server-webui/Gemfile
blob: cdf3449b538688ef443c74489217866bca0014ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
require "chef-server-webui/version"

source :rubygems

gem "rails", "3.2.2"
gem "jquery-rails"
gem "haml-rails"
gem "ruby-openid"
gem "coderay"

gem "chef", ChefServerWebui::VERSION, :git => "git://github.com/opscode/chef.git", :require => false # load individual parts as needed
gem "chef-solr", ChefServerWebui::VERSION, :git => "git://github.com/opscode/chef.git", :require => false

group(:dev) do
  gem 'thin'
end

group(:prod) do
  gem "unicorn", "~> 2.0.0"
  gem "therubyracer"
  gem "uglifier"
end