@@ -9,29 +9,29 @@ Gem::Specification.new do |spec|
9
9
spec . authors = [ "SpringMT" ]
10
10
spec . email = [ "[email protected] " ]
11
11
12
- spec . summary = %q{Write a short summary, because Rubygems requires one. }
13
- spec . description = %q{ Write a longer description or delete this line. }
12
+ spec . summary = %q{Ruby binding for zstd(Zstandard - Fast real-time compression algorithm) }
13
+ spec . description = %q{Ruby binding for zstd(Zstandard - Fast real-time compression algorithm). See https://github.com/facebook/zstd }
14
14
spec . homepage = "https://github.com/SpringMT/zstd-ruby"
15
15
spec . license = "MIT"
16
16
17
17
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
18
# to allow pushing to a single host or delete this section to allow pushing to any host.
19
19
if spec . respond_to? ( :metadata )
20
- spec . metadata [ 'allowed_push_host' ] = "TODO: Set to 'http://mygemserver.com'"
20
+ spec . metadata [ 'allowed_push_host' ] = "Set to 'http://mygemserver.com'"
21
21
else
22
22
raise "RubyGems 2.0 or newer is required to protect against " \
23
23
"public gem pushes."
24
24
end
25
25
26
26
spec . files = `git ls-files -z` . split ( "\x0 " ) . reject do |f |
27
- f . match ( %r{^(test|spec|features)/} )
27
+ f . match ( %r{^(test|spec|features|benchmarks|zstd )/} )
28
28
end
29
29
spec . bindir = "exe"
30
30
spec . executables = spec . files . grep ( %r{^exe/} ) { |f | File . basename ( f ) }
31
31
spec . require_paths = [ "lib" ]
32
32
33
33
spec . add_development_dependency "bundler" , "~> 1.14"
34
34
spec . add_development_dependency "rake" , "~> 10.0"
35
- spec . add_development_dependency "rake-compiler"
35
+ spec . add_development_dependency "rake-compiler" , '~> 1'
36
36
spec . add_development_dependency "rspec" , "~> 3.0"
37
37
end
0 commit comments