-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmini_i18n.gemspec
More file actions
23 lines (20 loc) · 881 Bytes
/
mini_i18n.gemspec
File metadata and controls
23 lines (20 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require "./lib/mini_i18n/version"
Gem::Specification.new do |spec|
spec.name = "mini_i18n"
spec.version = MiniI18n::VERSION
spec.summary = "Minimalistic I18n library for Ruby"
spec.description = "#{spec.summary}. It supports localization, pluralization, interpolations, fallbacks, nested keys and more."
spec.authors = ["markets"]
spec.email = ["srmarc.ai@gmail.com"]
spec.homepage = "https://github.com/markets/mini_i18n"
spec.license = "MIT"
spec.files = Dir.glob("lib/**/*")
spec.test_files = Dir.glob("spec/**/*")
spec.require_paths = ["lib"]
spec.executables = ["mi18n"]
spec.required_ruby_version = ">= 2.3"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "simplecov"
end