-
Notifications
You must be signed in to change notification settings - Fork 0
/
solidus_tax_exemptions.gemspec
36 lines (27 loc) · 1.4 KB
/
solidus_tax_exemptions.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
# frozen_string_literal: true
require_relative 'lib/solidus_tax_exemptions/version'
Gem::Specification.new do |spec|
spec.name = 'solidus_tax_exemptions'
spec.version = SolidusTaxExemptions::VERSION
spec.authors = ['Jared Norman']
spec.email = 'jared@super.gd'
spec.summary = 'An extensible interface for custom tax exemptions'
spec.description = spec.summary
spec.homepage = 'https://github.com/SuperGoodSoft/solidus_tax_exemptions'
spec.license = 'BSD-3-Clause'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/SuperGoodSoft/solidus_tax_exemptions'
spec.metadata['changelog_uri'] = 'https://github.com/SuperGoodSoft/solidus_tax_exemptions/releases'
spec.required_ruby_version = Gem::Requirement.new('~> 2.5')
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
files = Dir.chdir(__dir__) { `git ls-files -z`.split("\x0") }
spec.files = files.grep_v(%r{^(test|spec|features)/})
spec.test_files = files.grep(%r{^(test|spec|features)/})
spec.bindir = "exe"
spec.executables = files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency 'solidus_core', ['>= 2.0.0', '< 3']
spec.add_dependency 'solidus_support', '~> 0.5'
spec.add_development_dependency 'solidus_dev_support', '~> 2.1'
end