forked from spree-contrib/spree_i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spree_i18n.gemspec
33 lines (27 loc) · 1.03 KB
/
spree_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
# coding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
require 'spree_i18n/version'
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'spree_i18n'
s.version = SpreeI18n.version
s.summary = 'Provides locale information for use in Spree.'
s.description = s.summary
s.author = 'Sean Schofield'
s.email = '[email protected]'
s.homepage = 'http://spreecommerce.com'
s.license = 'BSD-3'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_path = 'lib'
s.requirements << 'none'
s.add_runtime_dependency 'i18n_data'
s.add_runtime_dependency 'rails-i18n'
s.add_runtime_dependency 'kaminari-i18n'
s.add_runtime_dependency 'routing-filter'
s.add_runtime_dependency 'spree_core', '>= 3.7.0', '< 5.0'
s.add_runtime_dependency 'spree_extension'
s.add_runtime_dependency 'deface', '~> 1.0'
s.add_development_dependency 'spree_dev_tools'
end