gitlabhq/Gemfile
Shane O'Grady 284ba65e8a Use HTTPS Protocol in Gemfile
Switch to the https protocol in the Gemfile & Gemfile.lock since the
git protocol is sometimes blocked by firewalls (and is not easily proxied)
2011-11-23 12:27:06 +00:00

54 lines
1 KiB
Ruby

source 'http://rubygems.org'
gem 'rails', '3.1.1'
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'
gem "carrierwave"
gem 'six'
gem 'therubyracer'
gem 'faker'
gem 'seed-fu', '~> 2.1.0'
gem "inifile"
gem "pygments.rb", "0.2.3"
gem "thin"
gem "git"
gem "acts_as_list"
gem 'rdiscount'
gem 'acts-as-taggable-on', '~> 2.1.0'
gem 'drapper'
group :assets do
gem 'sass-rails', "~> 3.1.0"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
end
group :development do
gem 'letter_opener'
gem 'rails-footnotes', '~> 3.7.5'
gem 'annotate', :git => 'https://github.com/ctran/annotate_models.git'
end
group :development, :test do
gem 'rspec-rails'
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
gem "shoulda", "~> 3.0.0.beta2"
end