bullet_train-integrations-stripe 1.0.1 → 1.0.2

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: b6725113b0b72922229fe124a7832ee8eaa869eaed3952215915dabf0c1fd0e5
4
- data.tar.gz: 5e576403715a63ad350964004995caba8fb74fdefe4dac40f10cd0fea9baed4c
3
+ metadata.gz: 3d7b81589ab46b9914d68a7d1734c506df076ed4aff74557dbdb45b26400af16
4
+ data.tar.gz: 87f8a93e4b347b9c35cec04c8e5ccb81a104ffa9ec709d7446ee16f99a066c1c
5
5
  SHA512:
6
- metadata.gz: 3d215c921514dba70f674ce3afda981e6ecc084b817d08f8d0d400f63d8d34fe93e134d44d6ae533fde2dcd53f2cb6f33c5ebd8fa2b74362f9d645acc94f815b
7
- data.tar.gz: 9508e0f4ffd9a2d0d9635b41d96d9ed263640aaec071e1337743fad4178d485490a87d5729551e32f86a04fe71e56ce3026fdcfd8a2046e13dc23611576c7e30
6
+ metadata.gz: 7bf0640208ceb6ed09a149e60a301e7b038280c70bf87457304f03c079e6964be2a0e3414f2a3d50b1da13da5df7bcb86382e340988904facce2fc17d1ef95ab
7
+ data.tar.gz: 7f63d26ff8f25b8b0d657840998a7c9ec2805b1e1699a26d91e87846845b8690ac2c8d1b784e3a55068753d2feeece13fcdc727c0c29007a87ce00e3ed4e4b13
@@ -0,0 +1,5 @@
1
+ module Integrations
2
+ def self.table_name_prefix
3
+ "integrations_"
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module Oauth
2
+ def self.table_name_prefix
3
+ "oauth_"
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module Webhooks::Incoming::Oauth
2
+ def self.table_name_prefix
3
+ "webhooks_incoming_oauth_"
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module Webhooks::Incoming
2
+ def self.table_name_prefix
3
+ "webhooks_incoming_"
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module Webhooks
2
+ def self.table_name_prefix
3
+ "webhooks_"
4
+ end
5
+ end
@@ -1,7 +1,7 @@
1
1
  module BulletTrain
2
2
  module Integrations
3
3
  module Stripe
4
- VERSION = "1.0.1"
4
+ VERSION = "1.0.2"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train-integrations-stripe
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
@@ -41,8 +41,13 @@ files:
41
41
  - app/models/concerns/integrations/stripe_installations/base.rb
42
42
  - app/models/concerns/oauth/stripe_accounts/base.rb
43
43
  - app/models/concerns/webhooks/incoming/oauth/stripe_account_webhooks/base.rb
44
+ - app/models/integrations.rb
44
45
  - app/models/integrations/stripe_installation.rb
46
+ - app/models/oauth.rb
45
47
  - app/models/oauth/stripe_account.rb
48
+ - app/models/webhooks.rb
49
+ - app/models/webhooks/incoming.rb
50
+ - app/models/webhooks/incoming/oauth.rb
46
51
  - app/models/webhooks/incoming/oauth/stripe_account_webhook.rb
47
52
  - app/views/account/integrations/stripe_installations/_breadcrumbs.html.erb
48
53
  - app/views/account/integrations/stripe_installations/_form.html.erb