Codebase list ruby-seed-fu / run/7dfe68a6-f5a2-4c79-bd0a-4ce04add804a/main seed-fu.gemspec
run/7dfe68a6-f5a2-4c79-bd0a-4ce04add804a/main

Tree @run/7dfe68a6-f5a2-4c79-bd0a-4ce04add804a/main (Download .tar.gz)

seed-fu.gemspec @run/7dfe68a6-f5a2-4c79-bd0a-4ce04add804a/mainraw · history · blame

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'seed-fu/version'

Gem::Specification.new do |s|
  s.name        = "seed-fu"
  s.version     = SeedFu::VERSION
  s.platform    = Gem::Platform::RUBY
  s.licenses    = ['MIT']
  s.authors     = ["Michael Bleigh", "Jon Leighton"]
  s.email       = ["michael@intridea.com", "j@jonathanleighton.com"]
  s.homepage    = "http://github.com/mbleigh/seed-fu"
  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"]
  s.add_dependency "activesupport", [">= 3.1"]

  s.add_development_dependency "rspec", "~> 2.0"
  s.add_development_dependency "pg", '~> 0'
  s.add_development_dependency "mysql2", '~> 0'
  s.add_development_dependency "sqlite3", '~> 0'

  s.files        = Dir.glob("{lib}/**/*") + %w(LICENSE README.md CHANGELOG.md)
  s.require_path = 'lib'
end