shopify-gold 2.1.5.pre → 2.1.7.pre

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: c176688ee23b2d85c932b1e6b4f9a225a1cbce740839be4d3c8a3ed91f273ee2
4
- data.tar.gz: 4e758dae06d051568b465a4bc190758d4b792c6a373a6d4eaf82f4b6c20b6213
3
+ metadata.gz: f6c8ace5d4d8ead0014d2c86ead25ad9bde3cb2685e41260a578675ab679165f
4
+ data.tar.gz: 05be6423251f44f471acf1f3dce5169092f9dfc77cd4b891bc9816edcae21d0b
5
5
  SHA512:
6
- metadata.gz: d72a39e0402796078e834f1ae164e512310523c0b22402319de746b5ae96663a22f04d4625798dbc1e0a47a633efa126be85567b75d2aa9c34dd82f925653714
7
- data.tar.gz: 299815fb54cc0413dda1d0730a5d49bfa597b8fc0d2bf6723597af32574b1a7f4c9ddbd535016231c08cd755598b9a3d730f455401628f77f8ccd866ceced149
6
+ metadata.gz: 4c19091ad6be5d1c454b2cafa6e84b91f3576d5b21355753d05b6d90bd4260b2b51d6b221c68cae5bcd52b075112b160d720325c3bb2eadd58b600007fa555b4
7
+ data.tar.gz: b18102a095dcd2500cb45d369a701ac4627b5a5c74707998bbb39578751bbc7cb895c13d718c03a6b6ac65c73691cc58fe748aa93ce098299bcd1b2b0b2d1dc8
@@ -5,7 +5,7 @@ module Gold
5
5
  # with the default Shop class that Shopify sets up, but if that is different
6
6
  # for your environment, you will need to create your own custom version of
7
7
  # this job.
8
- class AfterAuthenticateJob < ApplicationJob
8
+ class AfterAuthenticateJob < Gold::ApplicationJob
9
9
  include Outcomes
10
10
 
11
11
  def perform(shop_domain:)
@@ -1,6 +1,6 @@
1
1
  module Gold
2
2
  # Uninstalls the app for the merchant.
3
- class AppUninstalledJob < ApplicationJob
3
+ class AppUninstalledJob < Gold::ApplicationJob
4
4
  def perform(shop_domain:, webhook: nil) # rubocop:disable Lint/UnusedMethodArgument
5
5
  shop = Gold.shop_class.find_by!(Gold.shop_domain_attribute => shop_domain)
6
6
  billing = Gold::Billing.find_by!(shop: shop)
data/lib/gold/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Gold
2
- VERSION = "2.1.5.pre".freeze
2
+ VERSION = "2.1.7.pre".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shopify-gold
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.5.pre
4
+ version: 2.1.7.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Smith
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-08-15 00:00:00.000000000 Z
12
+ date: 2019-08-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -216,7 +216,6 @@ files:
216
216
  - app/controllers/gold/authenticated_controller.rb
217
217
  - app/controllers/gold/billing_controller.rb
218
218
  - app/controllers/gold/concerns/merchant_facing.rb
219
- - app/jobs/app_uninstalled_job.rb
220
219
  - app/jobs/gold/after_authenticate_job.rb
221
220
  - app/jobs/gold/app_uninstalled_job.rb
222
221
  - app/jobs/gold/application_job.rb
@@ -1,2 +0,0 @@
1
- # Defers to the Gold implementation.
2
- AppUninstalledJob = Gold::AppUninstalledJob