Skip to content

Commit

Permalink
Update dependencies for Rails 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Karolis Mazukna committed Dec 22, 2014
1 parent 192bf48 commit 0d958e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
source 'http://rubygems.org'
gem 'rails', ">= 3.1", "< 4.1"
gem 'rails', ">= 3.1", "<= 4.2"
gemspec
4 changes: 2 additions & 2 deletions seed-fu.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Gem::Specification.new do |s|
s.summary = "Easily manage seed data in your Active Record application"
s.description = "Seed Fu is an attempt to once and for all solve the problem of inserting and maintaining seed data in a database. It uses a variety of techniques gathered from various places around the web and combines them to create what is hopefully the most robust seed data system around."

s.add_dependency "activerecord", [">= 3.1", "< 4.2"]
s.add_dependency "activesupport", [">= 3.1", "< 4.2"]
s.add_dependency "activerecord", [">= 3.1", "<= 4.2"]
s.add_dependency "activesupport", [">= 3.1", "<= 4.2"]

s.add_development_dependency "rspec", "~> 2.0"
s.add_development_dependency "pg", '~> 0'
Expand Down

1 comment on commit 0d958e8

@chulkilee
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sadly it only allows 4.2.0, not 4.2.1, which is a bug. See #92

Please sign in to comment.