1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/factory_girl.gemspec

41 lines
1.6 KiB
Ruby
Raw Normal View History

2010-05-19 13:20:52 -04:00
$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
require 'factory_girl/version'
2008-06-03 12:35:02 -04:00
Gem::Specification.new do |s|
2010-05-19 13:20:52 -04:00
s.name = %q{factory_girl}
s.version = FactoryGirl::VERSION
2010-05-19 13:20:52 -04:00
s.summary = %q{factory_girl provides a framework and DSL for defining and
using model instance factories.}
s.description = %q{factory_girl provides a framework and DSL for defining and
2010-03-30 10:15:26 -04:00
using factories - less error-prone, more explicit, and
all-around easier to work with than fixtures.}
2008-06-03 12:35:02 -04:00
all_files = %x{git ls-files}.split("\n").reject {|file| file =~ /gemspec/ }
s.files = all_files.reject {|file| file =~ /^(spec|features|cucumber|gemfiles|Appraisals)/ }
s.test_files = all_files.select {|file| file =~ /^(spec|features|cucumber|gemfiles|Appraisals)/ }
2010-05-19 13:20:52 -04:00
s.require_path = 'lib'
s.authors = ["Joe Ferris"]
s.email = %q{jferris@thoughtbot.com}
2011-06-25 16:40:41 -07:00
s.homepage = "https://github.com/thoughtbot/factory_girl"
2010-05-19 13:20:52 -04:00
s.add_dependency("activesupport")
s.add_development_dependency("rspec", "~> 2.0")
s.add_development_dependency("cucumber", "~> 1.0.0")
s.add_development_dependency("timecop")
s.add_development_dependency("rcov")
s.add_development_dependency("aruba")
s.add_development_dependency("mocha")
s.add_development_dependency("bourne")
s.add_development_dependency("appraisal", "~> 0.3.8")
s.add_development_dependency("sqlite3-ruby")
s.add_development_dependency("yard")
s.add_development_dependency("bluecloth")
2008-11-28 17:02:09 -05:00
2010-05-19 13:20:52 -04:00
s.platform = Gem::Platform::RUBY
s.rubygems_version = %q{1.2.0}
2008-06-03 12:35:02 -04:00
end
2010-03-30 10:15:26 -04:00