-
Notifications
You must be signed in to change notification settings - Fork 0
/
string_cleaner.gemspec
35 lines (34 loc) · 963 Bytes
/
string_cleaner.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
26
27
28
29
30
31
32
33
34
35
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{string_cleaner}
s.version = "1.0.0"
s.authors = ["Joseph Halter"]
s.date = %q{2010-10-18}
s.email = %q{[email protected]}
s.required_ruby_version = ">= 2.6"
s.license = "MIT"
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".gitignore",
"LICENSE",
"README.rdoc",
"Rakefile",
"lib/string_cleaner.rb",
"spec/spec_helper.rb",
"spec/string_cleaner_spec.rb",
"string_cleaner.gemspec"
]
s.homepage = %q{http://github.com/JosephHalter/string_cleaner}
s.require_paths = ["lib"]
s.summary = %q{Fix invalid UTF-8 and wipe invisible chars, compatible with Ruby 2.6+ with extensive specs}
s.test_files = [
"spec/spec_helper.rb",
"spec/string_cleaner_spec.rb"
]
s.add_runtime_dependency "talentbox-unidecoder", "2.0.0"
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
end