pycall.gemspec in pycall-0.1.0.alpha.20170311 vs pycall.gemspec in pycall-0.1.0.alpha.20170317

- old
+ new

@@ -13,11 +13,18 @@ spec.description = %q{pycall} spec.homepage = "https://github.com/mrkn/pycall" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| - f.match(%r{^(test|spec|features)/}) + case f + when %r{^Guardfile}, # NOTE: Skip symlink for Windows + %r{^(test|spec|features)/} + true + else + false + end end + spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "ffi"