scube-server/Gemfile
Thibault Jouan 7efa92ab70 Fix dependencies specification in Gemfile:
* Implement custom Gemfile evaluation;
* Remove all uneeded gems;
* Fix indentation.
2014-04-01 03:15:01 +00:00

17 lines
431 B
Ruby

source 'http://rubygems.org'
gem 'rails', '~> 3.1'
gem 'pg', '~> 0.11'
gem 'haml', '~> 3.1'
gem 'bcrypt-ruby', '~> 3.0'
gem 'rabl', '~> 0.6'
group :development, :test do
gem 'rspec-rails', '~> 2.6'
gem 'capybara', '~> 1.1'
gem 'factory_girl_rails', '~> 1.2'
gem 'shoulda-matchers', '~> 1.0'
end
eval File.read('Gemfile-custom.rb') if File.exist?('Gemfile-custom.rb')