super_good-solidus_taxjar 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b11c5166cfe6ab6a6642c8b08d3cedc8faae319c
4
- data.tar.gz: 0f59931ebbf60fdae8b42510fc00111e12488d49
3
+ metadata.gz: ea1603239468467b7ec07bd237fe2c0a3925fa92
4
+ data.tar.gz: e7adee5f6cb56983e4a0ad595ee67e7e25c60f0b
5
5
  SHA512:
6
- metadata.gz: 64bb574adc61f27623381fdd6bcabf0e5f0dd508a73e97442c3e2d1b66a62036e89f4ed569a5a62dddbdf9088789e2c2670c12744c1f66bb454a8f6271352f56
7
- data.tar.gz: e6d919c2de1225d5ec329bea08c0e30b922fa7e7bb053aca39c8e1f8517af99f62d9c8fe157af82afd8be406893e4429a645c4045ee81dedb0de1afe08c29474
6
+ metadata.gz: 9a6bb08cedfc231be13091de7bd75ff4d6770ee5c5f8a190fc4c8b09b3ea7df319b529324bcc178c7c92602c7c405fba12e0ba2fc1182a1960ca587583336391
7
+ data.tar.gz: d74e280e27705339476b625bf36ecec42a84c102ce2a4f5e22ce347ee32bca4b4e2a69da185c394752c20b71a36a0728b29295f9084264c3237f3cbb1a8ad3f9
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ ## *Warning:* This extension is under active development and not yet at a v1.0 release.
2
+
1
3
  # `SuperGood::SolidusTaxJar` [![Build Status](https://travis-ci.com/SuperGoodSoft/solidus_taxjar.svg?token=rc5QTgHvLLF7cpqkmyfd&branch=master)](https://travis-ci.com/SuperGoodSoft/solidus_taxjar)
2
4
 
3
5
  `SuperGood::SolidusTaxJar` is a [Solidus](https://github.com/solidusio/solidus) extension that allows Solidus stores to use [TaxJar](https://www.taxjar.com/) for tax calculations.
@@ -4,7 +4,7 @@ module SuperGood
4
4
  def self.default_taxjar_client
5
5
  ::Taxjar::Client.new(
6
6
  api_key: ENV.fetch("TAXJAR_API_KEY"),
7
- api_url: 'https://api.sandbox.taxjar.com'
7
+ api_url: ENV.fetch("TAXJAR_API_URL") { 'https://api.taxjar.com' } # Sandbox URL: https://api.sandbox.taxjar.com
8
8
  )
9
9
  end
10
10
 
@@ -1,5 +1,5 @@
1
1
  module SuperGood
2
2
  module SolidusTaxJar
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: super_good-solidus_taxjar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jared Norman