Soften version requirements for most dependencies

This commit is contained in:
Thibault Jouan 2015-04-29 13:22:48 +00:00
parent 47be6e09f2
commit 96246f87bf
2 changed files with 18 additions and 18 deletions

19
Gemfile
View File

@ -1,12 +1,12 @@
source 'https://rubygems.org' source 'https://rubygems.org'
gem 'rails', '~> 4.2.1' gem 'rails', '~> 4.2.1'
gem 'pg', '~> 0.17' gem 'pg'
gem 'bcrypt', '~> 3.0' gem 'bcrypt'
gem 'unicorn-rails' gem 'unicorn-rails'
gem 'haml', '~> 4.0' gem 'haml'
gem 'rabl', '~> 0.6' gem 'rabl'
group :development, :test do group :development, :test do
@ -14,12 +14,13 @@ group :development, :test do
end end
group :test do group :test do
gem 'rspec-rails', '~> 2.6' gem 'rspec-rails'
gem 'rspec-activemodel-mocks' gem 'rspec-activemodel-mocks'
gem 'spork', github: 'tjouan/spork', branch: 'rspec-3'
gem 'capybara', '~> 2.2' gem 'spork', github: 'tjouan/spork', branch: 'rspec-3'
gem 'factory_girl_rails', '~> 4.4' gem 'capybara'
gem 'shoulda-matchers', '~> 2.5' gem 'factory_girl_rails'
gem 'shoulda-matchers'
gem 'rb-kqueue', require: false gem 'rb-kqueue', require: false
gem 'guard', require: false gem 'guard', require: false

View File

@ -178,7 +178,6 @@ GEM
rspec-core (~> 2.99.0) rspec-core (~> 2.99.0)
rspec-expectations (~> 2.99.0) rspec-expectations (~> 2.99.0)
rspec-mocks (~> 2.99.0) rspec-mocks (~> 2.99.0)
rspec-support (3.2.2)
shellany (0.0.1) shellany (0.0.1)
shoulda-matchers (2.8.0) shoulda-matchers (2.8.0)
activesupport (>= 3.0.0) activesupport (>= 3.0.0)
@ -210,20 +209,20 @@ PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
bcrypt (~> 3.0) bcrypt
capybara (~> 2.2) capybara
factory_girl_rails (~> 4.4) factory_girl_rails
guard guard
guard-rspec guard-rspec
guard-spork guard-spork
haml (~> 4.0) haml
pg (~> 0.17) pg
pry-rails pry-rails
rabl (~> 0.6) rabl
rails (~> 4.2.1) rails (~> 4.2.1)
rb-kqueue rb-kqueue
rspec-activemodel-mocks rspec-activemodel-mocks
rspec-rails (~> 2.6) rspec-rails
shoulda-matchers (~> 2.5) shoulda-matchers
spork! spork!
unicorn-rails unicorn-rails