-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathembedded_localization.gemspec
More file actions
33 lines (29 loc) · 1.57 KB
/
embedded_localization.gemspec
File metadata and controls
33 lines (29 loc) · 1.57 KB
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
33
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "embedded_localization/version"
Gem::Specification.new do |spec|
spec.name = "embedded_localization"
spec.version = EmbeddedLocalization::VERSION
spec.authors = ["Tilo Sloboda"]
spec.email = ["tilo.sloboda@gmail.com"]
spec.homepage = "https://github.com/tilo/embedded_localization"
spec.summary = %q{Rails I18n: library for embedded ActiveRecord model/data translation}
spec.description = %q{Rails I18n: a very lightweight tool to allow you to transparently store multiple translations of attributes directly inside each DB record -- no extra database tables needed to store the localization data!}
# spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = ">= 2.5.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/tilo/embedded_localization/blob/main/CHANGELOG.md"
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.licenses = ['MIT']
# specify any dependencies here; for example:
spec.add_development_dependency "codecov"
spec.add_development_dependency "rspec"
spec.add_development_dependency "activerecord", ">= 6"
spec.add_development_dependency "i18n"
spec.add_development_dependency "sqlite3"
# spec.add_runtime_dependency "rest-client"
end