gemstub.rb in extzstd-0.1 vs gemstub.rb in extzstd-0.1.1

- old
+ new

@@ -8,19 +8,19 @@ GEMSTUB = Gem::Specification.new do |s| s.name = "extzstd" s.version = version s.summary = "ruby bindings for Zstandard (zstd)" s.description = <<EOS -unoficial ruby bindings for Zstandard (zstd) <https://github.com/Cyan4973/zstd>. +unoficial ruby bindings for Zstandard (zstd) <https://github.com/facebook/zstd>. EOS - s.homepage = "https://osdn.jp/projects/rutsubo/" - s.license = "2-clause BSD License" + s.homepage = "https://github.com/dearblue/ruby-extzstd/" + s.license = "BSD-2-Clause" s.author = "dearblue" - s.email = "dearblue@users.osdn.me" + s.email = "dearblue@users.noreply.github.com" s.required_ruby_version = ">= 2.0" - s.add_development_dependency "rake" + s.add_development_dependency "rake", ">= 12.0" end LIB << "lib/extzstd/version.rb" file "lib/extzstd/version.rb" => %w(README.md) do @@ -33,5 +33,9 @@ end EOS end EXTRA.concat(FileList["contrib/**/*"]) + +filter = %r(contrib/zstd/(?:build|contrib|doc|examples|lib/dll|programs|tests|zlibWrapper)) +DOC.reject! { |path| path =~ filter } +EXTRA.reject! { |path| path =~ filter }