Fix dependencies specification in Gemfile:

* Implement custom Gemfile evaluation;
* Remove all uneeded gems;
* Fix indentation.
This commit is contained in:
Thibault Jouan
2014-04-01 03:15:01 +00:00
parent 3dbaf438a4
commit 7efa92ab70
3 changed files with 11 additions and 33 deletions

31
Gemfile
View File

@@ -1,27 +1,16 @@
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'
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 'thin', '~> 1.3'
gem 'rspec-rails', '~> 2.6'
gem 'capybara', '~> 1.1'
gem 'rspec-rails', '~> 2.6'
gem 'capybara', '~> 1.1'
gem 'factory_girl_rails', '~> 1.2'
gem 'spork', '~> 0.9.0.rc'
gem 'guard', '~> 0.8'
gem 'guard-rspec', '~> 0.4'
gem 'guard-spork', '~> 0.2'
if RbConfig::CONFIG['target_os'] =~ /linux/i
gem 'rb-inotify', '~> 0.8'
gem 'libnotify', '~> 0.6'
end
gem 'shoulda-matchers', '~> 1.0'
gem 'shoulda-matchers', '~> 1.0'
end
eval File.read('Gemfile-custom.rb') if File.exist?('Gemfile-custom.rb')