1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot_rails.git synced 2022-11-09 11:49:18 -05:00
thoughtbot--factory_bot_rails/factory_girl_rails.gemspec
Dan Croak 311605a825 Ignore gemfiles, don't ignore Gemfile.lock in git
Move dev dependencies out of gemspec and into Gemfile to gain more
control over the private API.
2014-05-27 00:41:28 -07:00

21 lines
864 B
Ruby

Gem::Specification.new do |s|
s.name = %q{factory_girl_rails}
s.version = '4.4.1'
s.authors = ["Joe Ferris"]
s.email = %q{jferris@thoughtbot.com}
s.homepage = "http://github.com/thoughtbot/factory_girl_rails"
s.summary = %q{factory_girl_rails provides integration between
factory_girl and rails 3}
s.description = %q{factory_girl_rails provides integration between
factory_girl and rails 3 (currently just automatic factory definition
loading)}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.license = "MIT"
s.add_runtime_dependency('railties', '>= 3.0.0')
s.add_runtime_dependency('factory_girl', '~> 4.4.0')
end