-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
seed_migration.gemspec
26 lines (20 loc) · 1012 Bytes
/
seed_migration.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "seed_migration/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "seed_migration"
s.version = SeedMigration::VERSION
s.authors = ["Andy O'Neill", "Daniel Schwartz", "Ilya Rubnich", "Pierre Jambet", "Sunny Ng"]
s.description = %q{Rails gem for Data Migrations}
s.summary = %q{Rails Data Migration}
s.homepage = "http://github.com/harrystech/seed_migration"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE.txt", "Rakefile", "README.md"]
s.add_development_dependency "pry"
s.add_development_dependency "rspec-rails", '~> 3.6.0'
s.add_development_dependency "rspec-mocks"
s.add_development_dependency "test-unit", "~> 3.0"
s.add_development_dependency "codeclimate-test-reporter"
end