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
|
# encoding: utf-8
require './lib/charlock_holmes/version' unless defined? CharlockHolmes::VERSION
Gem::Specification.new do |s|
s.name = %q{charlock_holmes}
s.license = "MIT"
s.version = CharlockHolmes::VERSION
s.authors = ["Brian Lopez", "Vicent MartÃ"]
s.date = Time.now.utc.strftime("%Y-%m-%d")
s.email = %q{seniorlopez@gmail.com}
s.extensions = ["ext/charlock_holmes/extconf.rb"]
s.files = `git ls-files`.split("\n")
s.homepage = %q{https://github.com/brianmario/charlock_holmes}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.4.2}
s.summary = %q{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.test_files = `git ls-files spec`.split("\n")
# tests
s.add_development_dependency 'rake-compiler', ">= 0.7.5"
s.add_development_dependency 'minitest'
# benchmarks
s.add_development_dependency 'chardet'
end
|