forked from twitter/twitter-cldr-rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwitter_cldr.gemspec
28 lines (21 loc) · 1.16 KB
/
twitter_cldr.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
$:.unshift File.join(File.dirname(__FILE__), 'lib')
require 'twitter_cldr/version'
Gem::Specification.new do |s|
s.name = "twitter_cldr"
s.version = ::TwitterCldr::VERSION
s.authors = ["Cameron Dutro"]
s.email = ["[email protected]"]
s.homepage = "http://twitter.com"
s.description = s.summary = "Ruby implementation of the ICU (International Components for Unicode) that uses the Common Locale Data Repository to format dates, plurals, and more."
s.platform = Gem::Platform::RUBY
s.has_rdoc = true
s.summary = "Ruby implementation of the ICU (International Components for Unicode) that uses the Common Locale Data Repository to format dates, plurals, and more."
s.add_dependency 'json'
s.add_dependency 'camertron-eprun'
s.add_dependency 'tzinfo'
s.require_path = 'lib'
gem_files = Dir["{lib,spec,resources}/**/*", "Gemfile", "History.txt", "LICENSE", "NOTICE", "README.md", "Rakefile", "twitter_cldr.gemspec"]
excluded_files = %w[spec/collation/CollationTest_CLDR_NON_IGNORABLE.txt spec/normalization/NormalizationTest.txt]
versioned_files = `git ls-files`.split("\n")
s.files = (gem_files - excluded_files) & versioned_files
end