gitlab-org--gitlab-foss/Gemfile

52 lines
1,014 B
Ruby
Raw Normal View History

2011-10-08 17:36:38 -04:00
source 'http://rubygems.org'
gem 'rails', '3.1.0'
gem 'sqlite3'
gem 'devise', "1.4.7"
gem 'stamp'
2011-10-27 09:44:29 -04:00
gem 'kaminari'
2011-10-08 17:36:38 -04:00
gem 'haml-rails'
gem 'jquery-rails'
2011-10-10 17:20:01 -04:00
gem 'grit', :git => 'git://github.com/gitlabhq/grit.git'
2011-10-08 17:36:38 -04:00
gem "carrierwave"
gem 'six'
gem 'therubyracer'
gem 'faker'
2011-10-14 07:57:45 -04:00
gem 'seed-fu', :git => 'git://github.com/mbleigh/seed-fu.git'
2011-10-08 17:36:38 -04:00
gem "inifile"
2011-10-21 08:35:42 -04:00
gem "pygments.rb", "0.2.3"
2011-10-08 17:57:14 -04:00
gem "thin"
2011-10-08 18:15:24 -04:00
gem "git"
2011-10-15 12:56:53 -04:00
gem "acts_as_list"
2011-10-27 15:37:17 -04:00
gem 'rdiscount'
2011-10-08 17:36:38 -04:00
group :assets do
gem 'sass-rails', " ~> 3.1.0"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
end
2011-10-27 15:37:17 -04:00
group :development do
2011-10-08 17:36:38 -04:00
gem 'rails-footnotes', '>= 3.7.5.rc4'
gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git'
end
group :development, :test do
gem 'rspec-rails'
gem "shoulda", "~> 3.0.0.beta2"
2011-10-08 17:36:38 -04:00
gem 'capybara'
gem 'autotest'
gem 'autotest-rails'
gem 'ruby-debug19', :require => 'ruby-debug'
gem 'awesome_print'
gem 'database_cleaner'
gem 'launchy'
end
group :test do
gem 'turn', :require => false
gem 'simplecov', :require => false
end