ob64.gemspec in ob64-0.4.0 vs ob64.gemspec in ob64-0.5.0

- old
+ new

@@ -15,9 +15,11 @@ # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) } + end + Dir.chdir(File.join(File.expand_path(__dir__), "vendor", "libbase64")) do + `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }.map! { |f| "vendor/libbase64/#{f}" } end spec.require_paths = ["lib"] spec.extensions = ["ext/ob64/extconf.rb"] spec.metadata = {