Fix dependencies specification in Gemfile:
* Implement custom Gemfile evaluation; * Remove all uneeded gems; * Fix indentation.
This commit is contained in:
31
Gemfile
31
Gemfile
@@ -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')
|
||||
|
Reference in New Issue
Block a user