Skip to content

Commit

Permalink
Change dependency of the gem to support Rails >= 3.1 and update CHANG…
Browse files Browse the repository at this point in the history
…ELOG and README
  • Loading branch information
take committed Jul 16, 2013
1 parent 89c6e87 commit 4c5d5cb
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Unreleased
----------

Features:

* Rails 4.0.X support added. (by @tkhr, @DanielWright)

Version 2.1.0
-------------

Expand Down
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"
gem 'rails', ">= 3.1", "< 4.1"
gemspec
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ Basic Example
Installation
------------

### Rails 4.0

The current latest version isn't compatible with Rails 4.0.
You will have to use the HEAD of this repo.

gem 'seed-fu', github: 'mbleigh/seed-fu'

### Rails 3.1

Just add `gem 'seed-fu', '~> 2.1.0'` to your `Gemfile`
Expand Down
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", "~> 4.0.0"
s.add_dependency "activesupport", "~> 4.0.0"
s.add_dependency "activerecord", [">= 3.1", "< 4.1"]
s.add_dependency "activesupport", [">= 3.1", "< 4.1"]

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

0 comments on commit 4c5d5cb

Please sign in to comment.