Skip to content

Commit

Permalink
use ~> syntax for rails gemfile dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
teeparham committed Dec 24, 2013
1 parent 2e2cb2a commit b2c786c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
3 changes: 1 addition & 2 deletions test/gemfiles/Gemfile.rails-3.0.x
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
source "https://rubygems.org"

gem 'rails', '>= 3.0.0', '< 3.1.0'
gem 'rails', '~> 3.0.0'
gemspec :path => "../.."

4 changes: 1 addition & 3 deletions test/gemfiles/Gemfile.rails-3.1.x
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
source "https://rubygems.org"

gem 'rails', '>= 3.1.0', '< 3.2.0'
gem 'rails', '~> 3.1.0'
gemspec :path => "../.."


3 changes: 1 addition & 2 deletions test/gemfiles/Gemfile.rails-3.2.x
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
source "https://rubygems.org"

gem 'rails', '>= 3.2.0', '< 3.3.0'
gem 'rails', '~> 3.2.0'
gemspec :path => "../.."

0 comments on commit b2c786c

Please sign in to comment.