shopify-gold 5.4.1 → 6.0.0

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
  SHA256:
3
- metadata.gz: 34d7f2d1cc46f58bf46bbaa7760f62960a12e700d1cffc8c9162d8700cf1a44e
4
- data.tar.gz: 450137076ab921618217e131fba822ea95a81f3c3a002bfb9bbba6f024cb571e
3
+ metadata.gz: 5af1f02e51816d38e9006351b7f2a34cf7e8e72ba868faab7cf1ab2f14fe8c7d
4
+ data.tar.gz: 817a1c5a99a6099bed127d6eb8af9c7e30363e35f2b219ce66c6d558861c9b95
5
5
  SHA512:
6
- metadata.gz: e102a20b20e1f0fcee6703bc917dc7500c4f1d024cb340dad8b685518e330e60b63f4f21d28793de48131c06d74d6568cd6e584b69ab670e2e3b751332c17fb0
7
- data.tar.gz: ba91515f4ace85d9ad0c13d7aa65546e9cb2a86e5ad2c507b39d4b8289c8c769a46baa1243be1342dda85d34930a2ca1a35aa724919ac217fed7a0752dc53c09
6
+ metadata.gz: 1d7ef42beab7002310f8ef6cb9c317fd031a8c55d7d0040b4a9b889183fe7b6cf264f458552fc849bc314ea33f02ad7c100c382300706df9f9fbbdd68b1dfbbd
7
+ data.tar.gz: 804b615464d2a7d1b0c5f70d84871ce1a8d56cc9770afe978c495671d0e9e2f9a7e23a56f581a218c6d6bc42afa368b9aa74a38da75fd7cc8721fc8ab047dc89
data/README.md CHANGED
@@ -119,9 +119,6 @@ Gold.configure do |config|
119
119
  # The URL to a plan comparison page for the app
120
120
  config.plan_comparison_url = "https://heliumdev.com/pricing"
121
121
 
122
- # The API version used by Shopify (https://help.shopify.com/en/api/versioning)
123
- config.shopify_api_version = "2019-04"
124
-
125
122
  # If Gold is allowed to cancel charges (paid -> free) automatically
126
123
  config.allow_automated_charge_cancellation = true
127
124
 
@@ -165,7 +165,7 @@ module Gold
165
165
  private
166
166
 
167
167
  def shopify_session
168
- billing.shop.with_shopify_session do
168
+ billing.with_shopify_session do
169
169
  yield
170
170
  end
171
171
  end
@@ -16,7 +16,7 @@ module Gold
16
16
  # cleaned up.
17
17
  billing = Billing.find_or_create_by!(shop: shop)
18
18
 
19
- shop.with_shopify_session do
19
+ billing.with_shopify_session do
20
20
  outcome = InstallOp.new(billing).call
21
21
 
22
22
  case outcome
@@ -5,7 +5,7 @@ module Gold
5
5
 
6
6
  # Inform a merchant about their account becoming suspended.
7
7
  def suspension(billing)
8
- billing.shop.with_shopify_session do
8
+ billing.with_shopify_session do
9
9
  @shop = ShopifyAPI::Shop.current
10
10
  mail(to: @shop.email,
11
11
  subject: "We have suspended your access to #{Gold.configuration.app_name}")
@@ -14,7 +14,7 @@ module Gold
14
14
 
15
15
  # Inform a merchant about their non-payment.
16
16
  def delinquent(billing)
17
- billing.shop.with_shopify_session do
17
+ billing.with_shopify_session do
18
18
  @shop = ShopifyAPI::Shop.current
19
19
  mail(to: @shop.email,
20
20
  subject: "We need you to approve a charge for " \
@@ -23,7 +23,7 @@ module Gold
23
23
  end
24
24
 
25
25
  def affiliate_to_paid(billing, confirmation_url)
26
- billing.shop.with_shopify_session do
26
+ billing.with_shopify_session do
27
27
  @shop = ShopifyAPI::Shop.current
28
28
  @confirmation_url = confirmation_url
29
29
  app_name = Gold.configuration.app_name
@@ -50,6 +50,8 @@ module Gold
50
50
  association_name: :transitions)
51
51
  end
52
52
 
53
+ delegate :with_shopify_session, to: :shop
54
+
53
55
  delegate :can_transition_to?,
54
56
  :transition_to!,
55
57
  :transition_to,
@@ -112,7 +114,7 @@ module Gold
112
114
 
113
115
  Gold.logger.info("Received shop update from '#{shop.shopify_domain}'")
114
116
 
115
- shop.with_shopify_session do
117
+ billing.with_shopify_session do
116
118
  case current_state
117
119
  when :affiliate
118
120
  if shopify_plan.paying?
@@ -3,7 +3,7 @@
3
3
  <strong>Active charge</strong>
4
4
  </div>
5
5
  <div class="card-body">
6
- <% billing.shop.with_shopify_session do %>
6
+ <% billing.with_shopify_session do %>
7
7
  <% charge = @active_charge %>
8
8
  <% if charge %>
9
9
  <% if charge.test %>
@@ -1,4 +1,4 @@
1
- <% billing.shop.with_shopify_session do %>
1
+ <% billing.with_shopify_session do %>
2
2
  <div class="card mb-3">
3
3
  <div class="card-header">
4
4
  <strong>Credit</strong>
@@ -7,7 +7,6 @@ module Gold
7
7
  :plan_comparison_url,
8
8
  :logger,
9
9
  :admin_credentials,
10
- :shopify_api_version,
11
10
  :allow_automated_charge_cancellation,
12
11
  :days_until_delinquent,
13
12
  :days_until_cleanup,
@@ -64,9 +63,6 @@ module Gold
64
63
  password: "password123"
65
64
  }
66
65
 
67
- # The API version used by Shopify (https://help.shopify.com/en/api/versioning)
68
- @shopify_api_version = "2019-04"
69
-
70
66
  # If Gold is allowed to cancel charges (paid -> free) automatically
71
67
  @allow_automated_charge_cancellation = true
72
68
 
data/lib/gold/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Gold
2
- VERSION = "5.4.1".freeze
2
+ VERSION = "6.0.0".freeze
3
3
  end
@@ -51,7 +51,7 @@ namespace :gold do
51
51
  Gold::Billing.all.each do |billing|
52
52
  next unless billing.state_machine.can_transition_to?(:check_charge)
53
53
 
54
- billing.shop.with_shopify_session do
54
+ billing.with_shopify_session do
55
55
  outcome = Gold::CheckChargeOp.new(billing).call
56
56
 
57
57
  if outcome.ok?
@@ -77,7 +77,7 @@ namespace :gold do
77
77
  Gold::Billing.all.each do |billing|
78
78
  next unless billing.state_machine.can_transition_to?(:cleanup)
79
79
 
80
- billing.shop.with_shopify_session do
80
+ billing.with_shopify_session do
81
81
  outcome = Gold::CleanupOp.new(billing).call
82
82
  puts "Cleanup for shop '#{billing.shop.shopify_domain}': #{outcome}"
83
83
  end
@@ -91,7 +91,7 @@ namespace :gold do
91
91
  next unless billing.state_machine.can_transition_to?(:marked_as_delinquent)
92
92
  end
93
93
 
94
- billing.shop.with_shopify_session do
94
+ billing.with_shopify_session do
95
95
  domain = billing.shop.shopify_domain
96
96
 
97
97
  begin
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shopify-gold
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.4.1
4
+ version: 6.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Smith
8
8
  - Nick Mealey
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-01-13 00:00:00.000000000 Z
12
+ date: 2021-09-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -302,7 +302,7 @@ files:
302
302
  homepage: https://gitlab.com/helium-development/infrastructure/gold
303
303
  licenses: []
304
304
  metadata: {}
305
- post_install_message:
305
+ post_install_message:
306
306
  rdoc_options: []
307
307
  require_paths:
308
308
  - lib
@@ -317,8 +317,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
317
317
  - !ruby/object:Gem::Version
318
318
  version: '0'
319
319
  requirements: []
320
- rubygems_version: 3.1.2
321
- signing_key:
320
+ rubyforge_project:
321
+ rubygems_version: 2.7.10
322
+ signing_key:
322
323
  specification_version: 4
323
324
  summary: Helium's approach to billing for Shopify apps
324
325
  test_files: []