straddle_pay 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf56e36b8c5ad31abdb73a507b57e21646f5996fdbba44ba4b14f4f3509a3576
4
- data.tar.gz: 0a2e227e8e70a8bed554b0372fb2d2e54ea058c96649cea773b4e983dc95aa69
3
+ metadata.gz: f4d7f05af1d990ba5ea2a631a432e0ea95f706522f4fe152853c2653e2f5df7c
4
+ data.tar.gz: 2e3194142a4bcc996c1a8a5990312cea1e4e0b0e4eb16c4077ccc895c2273704
5
5
  SHA512:
6
- metadata.gz: ba3e1707a861e85fd772f9cb31495f0e7a0e7f6f80f50cc2c023fa9b1e64abf49114d1304a492ef970d5e0d808e947721b1f8c530b63428a56572f43fc875f65
7
- data.tar.gz: bb7814818ac4e160d38b6113cf2d56fa1d834de49beb93502244720eb31f0028eddb96fcd6be5df7dcb76a71540b8cfeb0d67943ffd8fa1c5c9b57f0b0b14c98
6
+ metadata.gz: 3741d5f0636f9fdef8146b664f7a775014dd2d2c72c320eb8749a77e88306f6c0757fd0e61b6ba03748249a69ec37b58802c6943abfb162fc6c5af0dc2996e42
7
+ data.tar.gz: f4211160e89c6efdf822fd9d1f81b99310cd51170547595f6bbf1d2db6288f31557b5271fee70a23415da357b865afa36c8927fa10937c8dda03a98c05f7b9c3
data/README.md CHANGED
@@ -29,7 +29,7 @@ Per-instance overrides:
29
29
  ```ruby
30
30
  client = StraddlePay::Client.new(
31
31
  api_key: "sk_different_key",
32
- base_url: "https://production.straddle.io"
32
+ base_url: "https://production.straddle.com"
33
33
  )
34
34
  ```
35
35
 
@@ -37,8 +37,8 @@ client = StraddlePay::Client.new(
37
37
 
38
38
  | Environment | URL |
39
39
  |-------------|-----|
40
- | Sandbox (default) | `https://sandbox.straddle.io` |
41
- | Production | `https://production.straddle.io` |
40
+ | Sandbox (default) | `https://sandbox.straddle.com` |
41
+ | Production | `https://production.straddle.com` |
42
42
 
43
43
  ### Rails
44
44
 
@@ -13,9 +13,9 @@ module StraddlePay
13
13
  # end
14
14
  class Config
15
15
  # @return [String] Sandbox API base URL
16
- SANDBOX_URL = "https://sandbox.straddle.io"
16
+ SANDBOX_URL = "https://sandbox.straddle.com"
17
17
  # @return [String] Production API base URL
18
- PRODUCTION_URL = "https://production.straddle.io"
18
+ PRODUCTION_URL = "https://production.straddle.com"
19
19
 
20
20
  # @return [String, nil] API key for authentication
21
21
  attr_accessor :api_key
@@ -2,5 +2,5 @@
2
2
 
3
3
  module StraddlePay
4
4
  # @return [String] current gem version
5
- VERSION = "0.1.2"
5
+ VERSION = "0.1.4"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: straddle_pay
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - dpaluy