-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
solidus_i18n.gemspec
37 lines (29 loc) · 1.22 KB
/
solidus_i18n.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
# frozen_string_literal: true
$:.push File.expand_path('lib', __dir__)
require 'solidus_i18n/version'
Gem::Specification.new do |s|
s.name = 'solidus_i18n'
s.version = SolidusI18n::VERSION
s.summary = 'Provides locale information for use in Solidus.'
s.description = 'A collection of translations for Solidus.'
s.required_ruby_version = '>= 2.5.0'
s.author = 'Thomas von Deyen'
s.email = '[email protected]'
s.homepage = 'https://github.com/solidusio/solidus_i18n'
s.license = 'BSD-3-Clause'
s.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
s.test_files = Dir['spec/**/*']
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ["lib"]
if s.respond_to?(:metadata)
s.metadata["homepage_uri"] = s.homepage if s.homepage
s.metadata["source_code_uri"] = s.homepage if s.homepage
s.metadata["changelog_uri"] = 'https://github.com/solidusio/solidus_i18n/releases'
end
s.add_runtime_dependency 'solidus_core', ['>= 1.1', '< 5']
s.add_runtime_dependency 'solidus_support', '~> 0.4'
s.add_development_dependency 'solidus_dev_support'
end