gitlabhq/Gemfile

58 lines
1.2 KiB
Ruby
Raw Normal View History

source "http://rubygems.org"
2011-10-08 23:36:38 +02:00
gem "rails", "3.1.1"
2011-10-08 23:36:38 +02: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 21:08:21 +01:00
gem "gitolite", :git => "https://github.com/gitlabhq/gitolite-client.git"
2011-10-08 23:36:38 +02:00
gem "carrierwave"
gem "six"
gem "therubyracer"
gem "faker"
gem "seed-fu", "~> 2.1.0"
2011-10-21 14:35:42 +02:00
gem "pygments.rb", "0.2.3"
2011-10-08 23:57:14 +02:00
gem "thin"
2011-10-09 00:15:24 +02:00
gem "git"
2011-10-15 18:56:53 +02:00
gem "acts_as_list"
gem "rdiscount"
gem "acts-as-taggable-on", "~> 2.1.0"
gem "drapper"
gem "rchardet19", "~> 1.3.5"
2011-12-12 23:03:38 +01:00
gem "resque"
2011-11-04 08:42:36 +01:00
2011-10-08 23:36:38 +02:00
group :assets do
gem "sass-rails", "~> 3.1.0"
gem "coffee-rails", "~> 3.1.0"
gem "uglifier"
2011-10-08 23:36:38 +02:00
end
2011-10-27 21:37:17 +02: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 23:36:38 +02: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"
2011-10-08 23:36:38 +02:00
end
group :test do
gem "turn", :require => false
gem "simplecov", :require => false
gem "shoulda", "~> 3.0.0.beta2"
2011-10-08 23:36:38 +02:00
end