forked from arjun-urs/string-scrub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring-scrub.gemspec
25 lines (21 loc) · 942 Bytes
/
string-scrub.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "string-scrub"
spec.version = "0.1.2"
spec.authors = ["SHIBATA Hiroshi"]
spec.email = ["[email protected]"]
spec.summary = %q{String#scrub for Ruby 2.0.0 and 2.3.0}
spec.description = %q{String#scrub for Ruby 2.0.0 and 2.3.0}
spec.homepage = "https://github.com/hsbt/string-scrub"
spec.license = "2-clause BSDL"
spec.files = `git ls-files`.split($/)
spec.extensions = ["ext/string/extconf.rb"]
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = '< 2.3.0'
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency 'rake-compiler'
spec.add_development_dependency "test-unit"
end