Skip to content

Commit

Permalink
Be explicit about Active Support dependency rather than relying on Ac…
Browse files Browse the repository at this point in the history
…tive Record to require it
  • Loading branch information
jonleighton committed Dec 26, 2010
1 parent ad24a6d commit 947a6e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/seed-fu.rb
@@ -1,4 +1,5 @@
require 'active_record'
require 'active_support/core_ext/module/attribute_accessors'
require 'seed-fu/railtie' if defined?(Rails) && Rails.version >= "3"

module SeedFu
Expand Down
1 change: 1 addition & 0 deletions seed-fu.gemspec
Expand Up @@ -15,6 +15,7 @@ Gem::Specification.new do |s|
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.0.0"
s.add_dependency "activesupport", "~> 3.0.0"

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

0 comments on commit 947a6e3

Please sign in to comment.