-
Notifications
You must be signed in to change notification settings - Fork 82
/
mobility.gemspec
48 lines (38 loc) · 1.87 KB
/
mobility.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mobility/version'
Gem::Specification.new do |spec|
spec.name = "mobility"
spec.version = Mobility.gem_version
spec.authors = ["Chris Salzberg"]
spec.email = ["[email protected]"]
spec.required_ruby_version = '>= 2.5'
spec.summary = %q{Pluggable Ruby translation framework}
spec.description = %q{Stores and retrieves localized data through attributes on a Ruby class, with flexible support for different storage strategies.}
spec.homepage = 'https://github.com/shioyama/mobility'
spec.license = "MIT"
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/shioyama/mobility'
spec.metadata['bug_tracker_uri'] = 'https://github.com/shioyama/mobility/issues'
spec.metadata['changelog_uri'] = 'https://github.com/shioyama/mobility/blob/master/CHANGELOG.md'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir['{lib/**/*,[A-Z]*}']
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency 'request_store', '~> 1.0'
spec.add_dependency 'i18n', '>= 0.6.10', '< 2'
spec.add_development_dependency "database_cleaner", '~> 1.5', '>= 1.5.3'
spec.add_development_dependency "rake", '~> 12', '>= 12.2.1'
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency 'yard', '~> 0.9.0'
spec.cert_chain = ["certs/shioyama.pem"]
spec.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
spec.post_install_message = %q{
Warning: Mobility v1.3.x includes potentially backwards-incompatible changes
for jsonb/hstore backends.
Please see:
- https://github.com/shioyama/mobility/issues/535
}
end