mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
Don't include extra files in the gem
Closes #225 Also remove the factory_girl_rails gemspec, since we aren't going to release another version of that gem. Co-authored-by: Daniel Colson <danieljamescolson@gmail.com>
This commit is contained in:
parent
26047dcff9
commit
c4f561d2d7
2 changed files with 1 additions and 21 deletions
|
@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
||||||
factory_bot and rails 3 or newer (currently just automatic factory definition
|
factory_bot and rails 3 or newer (currently just automatic factory definition
|
||||||
loading)}
|
loading)}
|
||||||
|
|
||||||
s.files = Dir['**/*'].keep_if { |file| File.file?(file) }
|
s.files = Dir['lib/**/*'] + %w[CONTRIBUTING.md LICENSE NEWS README.md]
|
||||||
s.require_paths = ["lib"]
|
s.require_paths = ["lib"]
|
||||||
s.executables = []
|
s.executables = []
|
||||||
s.license = "MIT"
|
s.license = "MIT"
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
Gem::Specification.new do |s|
|
|
||||||
s.name = %q{factory_girl_rails}
|
|
||||||
s.version = '4.8.2'
|
|
||||||
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 or newer}
|
|
||||||
s.description = %q{factory_girl_rails provides integration between
|
|
||||||
factory_girl and rails 3 or newer (currently just automatic factory definition
|
|
||||||
loading)}
|
|
||||||
|
|
||||||
s.files = Dir['**/*'].keep_if { |file| File.file?(file) }
|
|
||||||
s.require_paths = ["lib"]
|
|
||||||
s.executables = []
|
|
||||||
s.license = "MIT"
|
|
||||||
|
|
||||||
s.add_runtime_dependency('railties', '>= 3.0.0')
|
|
||||||
s.add_runtime_dependency('factory_girl', '~> 4.8.2')
|
|
||||||
end
|
|
Loading…
Reference in a new issue