-
Notifications
You must be signed in to change notification settings - Fork 155
/
seed-fu.gemspec
28 lines (23 loc) · 1.21 KB
/
seed-fu.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- 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 = ["[email protected]", "[email protected]"]
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