Skip to content

Commit

Permalink
Instead of requiring >=, use ~> instead.
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Jul 20, 2009
1 parent 8898d25 commit d8d1fc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion remarkable_activerecord/Rakefile
Expand Up @@ -13,7 +13,7 @@ require File.join(File.dirname(__FILE__), "..", "rake_helpers.rb")
########### Package && release

configure_gemspec! do |s|
s.add_dependency('remarkable', ">= #{GEM_VERSION}")
s.add_dependency('remarkable', "~> #{GEM_VERSION}")
end

########### Specs
Expand Down
4 changes: 2 additions & 2 deletions remarkable_rails/Rakefile
Expand Up @@ -14,8 +14,8 @@ require File.join(File.dirname(__FILE__), "..", "rake_helpers.rb")

configure_gemspec! do |s|
s.add_dependency('rspec-rails', ">= #{RSPEC_VERSION}")
s.add_dependency('remarkable', ">= #{GEM_VERSION}")
s.add_dependency('remarkable_activerecord', ">= #{GEM_VERSION}")
s.add_dependency('remarkable', "~> #{GEM_VERSION}")
s.add_dependency('remarkable_activerecord', "~> #{GEM_VERSION}")
end

########### Specs
Expand Down

0 comments on commit d8d1fc1

Please sign in to comment.