gitlab-org--gitlab-foss/Gemfile

60 lines
1.2 KiB
Ruby
Raw Normal View History

source "http://rubygems.org"
2011-10-08 21:36:38 +00:00
gem "rails", "3.1.1"
2011-10-08 21:36:38 +00:00
gem "sqlite3"
gem "devise", "1.5.0"
gem "stamp"
gem "kaminari"
gem "haml-rails"
gem "jquery-rails"
gem "grit", :git => "https://github.com/gitlabhq/grit.git"
2011-12-05 20:08:21 +00:00
gem "gitolite", :git => "https://github.com/gitlabhq/gitolite-client.git"
2011-10-08 21:36:38 +00:00
gem "carrierwave"
gem "six"
gem "therubyracer"
gem "faker"
gem "seed-fu", "~> 2.1.0"
2011-10-21 12:35:42 +00:00
gem "pygments.rb", "0.2.3"
2011-10-08 21:57:14 +00:00
gem "thin"
2011-10-08 22:15:24 +00:00
gem "git"
2011-10-15 16:56:53 +00:00
gem "acts_as_list"
gem "rdiscount"
gem "acts-as-taggable-on", "~> 2.1.0"
gem "drapper"
2011-12-12 22:03:38 +00:00
gem "resque"
gem "httparty"
2011-12-30 14:25:45 +00:00
gem "charlock_holmes"
2011-11-04 07:42:36 +00:00
2011-10-08 21:36:38 +00:00
group :assets do
gem "sass-rails", "~> 3.1.0"
gem "coffee-rails", "~> 3.1.0"
gem "uglifier"
2011-10-08 21:36:38 +00:00
end
2011-10-27 19:37:17 +00:00
group :development do
gem "letter_opener"
gem "rails-footnotes", "~> 3.7.5"
gem "annotate", :git => "https://github.com/ctran/annotate_models.git"
2011-10-08 21:36:38 +00:00
end
group :development, :test do
gem "rspec-rails"
gem "capybara"
gem "autotest"
gem "autotest-rails"
unless ENV["CI"]
gem "ruby-debug19", :require => "ruby-debug"
end
gem "awesome_print"
gem "database_cleaner"
gem "launchy"
gem "webmock"
2011-10-08 21:36:38 +00:00
end
group :test do
gem "turn", :require => false
gem "simplecov", :require => false
gem "shoulda", "~> 3.0.0.beta2"
2011-10-08 21:36:38 +00:00
end