Skip to content

Commit

Permalink
Include datapackage/schemas in gemspec files; remove etc (#28)
Browse files Browse the repository at this point in the history
Without this, the datapackage/schemas directory won't be included in the packaged gem causing a RegistryError.

Remove `etc` from the gemspec files because it doesn't exist.
  • Loading branch information
reidab authored and georgiana-b committed Jun 19, 2017
1 parent 3efa479 commit 163f84a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datapackage.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |s|
s.email = ['ops@theodi.org']
s.homepage = 'http://github.com/theodi/datapackage.rb'
s.summary = 'Library for working with data packages'
s.files = Dir['{bin,etc,lib}/**/*'] + ['LICENSE.md', 'README.md']
s.files = Dir['{bin,lib,datapackage/schemas}/**/*'] + ['LICENSE.md', 'README.md']
s.executables << 'datapackage'
s.license = 'MIT'
s.required_ruby_version = '>= 2.0'
Expand Down

0 comments on commit 163f84a

Please sign in to comment.