forked from railsdog/spree-volume-pricing
-
Notifications
You must be signed in to change notification settings - Fork 113
/
spree_volume_pricing.gemspec
30 lines (24 loc) · 1.01 KB
/
spree_volume_pricing.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
lib = File.expand_path('../lib/', __FILE__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
require 'spree_volume_pricing/version'
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'spree_volume_pricing'
s.version = SpreeVolumePricing.version
s.summary = 'Allow prices to be configured in quantity ranges for each variant'
s.description = s.summary
s.required_ruby_version = '>= 2.2.3'
s.author = 'Sean Schofield'
s.email = '[email protected]'
s.homepage = 'https://github.com/spree-contrib/spree_volume_pricing'
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 'spree_core', '>= 3.1.0', '< 5.0'
s.add_runtime_dependency 'spree_extension'
s.add_runtime_dependency 'deface', '~> 1.0'
s.add_development_dependency 'shoulda-matchers'
s.add_development_dependency 'spree_dev_tools'
end