-
Notifications
You must be signed in to change notification settings - Fork 34
/
i18n_alchemy.gemspec
29 lines (24 loc) · 1.01 KB
/
i18n_alchemy.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "i18n_alchemy/version"
Gem::Specification.new do |s|
s.name = "i18n_alchemy"
s.version = I18n::Alchemy::VERSION
s.platform = Gem::Platform::RUBY
s.licenses = ["MIT"]
s.authors = ["Carlos Antonio da Silva"]
s.email = ["carlosantoniodasilva@gmail.com"]
s.homepage = ""
s.summary = %q{I18n date/number parsing/localization}
s.description = %q{I18n date/number parsing/localization}
s.files = Dir["CHANGELOG.md", "MIT-LICENSE", "README.md", "lib/**/*"]
s.test_files = Dir["test/**/*"]
s.require_paths = ["lib"]
s.required_ruby_version = '>= 2.5.0'
s.add_dependency "activesupport", ">= 4.0.0", "< 8.0"
s.add_dependency "i18n", ">= 0.7"
s.add_development_dependency "actionpack", ">= 4.0.0", "< 8.0"
s.add_development_dependency "activerecord", ">= 4.0.0", "< 8.0"
s.add_development_dependency "minitest", ">= 4.3.2"
s.add_development_dependency "rake", ">= 10.1"
end