forked from onomojo/i18n-country-translations
-
Notifications
You must be signed in to change notification settings - Fork 2
/
i18n-country-translations.gemspec
32 lines (27 loc) · 1.41 KB
/
i18n-country-translations.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "i18n_country_translations/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "i18n-country-translations"
s.version = I18nCountryTranslations::VERSION
s.authors = ["Brian McQuay"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/onomojo/i18n-country-translations"
s.summary = "I18n Country Translations"
s.description = "The purpose of this gem is to simply provide country translations. The gem is intended to be easy to combine with other gems that require i18n country translations so we can have common i18n country translation gem."
s.files = Dir.glob("lib/**/*") + Dir.glob("rails/locale/**/*") +
%w(README.rdoc MIT-LICENSE)
s.test_files = Dir["test/**/*"]
s.require_path = 'lib'
s.platform = Gem::Platform::RUBY
s.add_dependency('i18n', '>= 0.9.3', '< 2')
s.add_runtime_dependency 'railties', '>= 5.0'
s.add_development_dependency "rails", "~> 6"
s.add_development_dependency 'rspec-rails', '~> 3.7', '>= 3.7.2'
s.add_development_dependency 'i18n-spec', '~> 0.1', '>= 0.1.1'
s.add_development_dependency 'nokogiri', '~> 1.8', '>= 1.8.1'
s.add_development_dependency 'webmock', '~> 3.3', '>= 3.3.0'
s.add_development_dependency "simplecov", '~> 0.15.1'
s.licenses = ['MIT', 'GPL-3.0']
end