-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathcharlock_holmes.gemspec
More file actions
20 lines (18 loc) · 868 Bytes
/
charlock_holmes.gemspec
File metadata and controls
20 lines (18 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require './lib/charlock_holmes/version' unless defined? CharlockHolmes::VERSION
Gem::Specification.new "charlock_holmes", CharlockHolmes::VERSION do |s|
s.license = "MIT"
s.authors = ["Brian Lopez", "Vicent Martí"]
s.email = "seniorlopez@gmail.com"
s.extensions = ["ext/charlock_holmes/extconf.rb"]
s.files = `git ls-files ext lib`.split("\n")
s.homepage = "https://github.com/brianmario/charlock_holmes"
s.rdoc_options = ["--charset=UTF-8"]
s.summary = "Character encoding detection, brought to you by ICU"
s.description = "charlock_holmes provides binary and text detection as well as text transcoding using libicu"
s.required_ruby_version = '>= 1.9.3'
# tests
s.add_development_dependency 'rake-compiler', "~> 1.0"
s.add_development_dependency 'minitest', "~> 5.11"
# benchmarks
s.add_development_dependency 'chardet', "~> 0.9"
end