summaryrefslogtreecommitdiff
path: root/super_good-solidus_taxjar.gemspec
diff options
context:
space:
mode:
authorJared Norman <jared@super.gd>2018-12-30 15:53:31 -0800
committerJared Norman <jared@super.gd>2018-12-30 16:11:29 -0800
commitbe044a6bbc2bca4f36d6f94968602cb148659e6c (patch)
tree456c8582debebcfbe87442e61c63b38ede7117d0 /super_good-solidus_taxjar.gemspec
Initial commit
Diffstat (limited to 'super_good-solidus_taxjar.gemspec')
-rw-r--r--super_good-solidus_taxjar.gemspec28
1 files changed, 28 insertions, 0 deletions
diff --git a/super_good-solidus_taxjar.gemspec b/super_good-solidus_taxjar.gemspec
new file mode 100644
index 0000000..9cbd68e
--- /dev/null
+++ b/super_good-solidus_taxjar.gemspec
@@ -0,0 +1,28 @@
+lib = File.expand_path("../lib", __FILE__)
+$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
+require "super_good/solidus_taxjar/version"
+
+Gem::Specification.new do |spec|
+ spec.name = "super_good-solidus_taxjar"
+ spec.version = SuperGood::SolidusTaxJar::VERSION
+ spec.authors = ["Jared Norman"]
+ spec.email = ["jared@super.gd"]
+
+ spec.summary = "Support for using TaxJar to handle tax calculations in Solidus"
+ spec.description = spec.summary
+ spec.homepage = "https://github.com/SuperGoodSoft/solidus_taxjar"
+ spec.license = "MIT"
+
+ # 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.
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
+ end
+ spec.bindir = "exe"
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ spec.require_paths = ["lib"]
+
+ spec.add_development_dependency "bundler", "~> 1.17"
+ spec.add_development_dependency "rake", "~> 10.0"
+ spec.add_development_dependency "rspec", "~> 3.0"
+end