core_merchant 0.10.1 → 0.10.3

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: f2a8720cdfe9e44ee389c1f9297dca125be49ee41dd0aa36353480ebe59242f1
4
- data.tar.gz: 8dc8ed8fd42ef4fca3ecd63b5064a0b5499da237df1fbc19bdb75301054b7646
3
+ metadata.gz: b1b4b1cbf5077a524194ccfd967de5ffa09300f0044eb1510f29685f3f423a61
4
+ data.tar.gz: 9cbf2263f4dc11a235a7d4fb3bac772d9b596ee819eda49462dc5c1d7495bf83
5
5
  SHA512:
6
- metadata.gz: 76f2ff5aa75aeb8f992be5be10d1e5b7630102cf34ddf2bfcdeeafe7ac151253e27ff6dbeea2936b245af3b6965b02dce856354ae2ee7d958844e93f07cc51dd
7
- data.tar.gz: 7175e21168584ba3b16863933e4ea5afc297fe8fb053f8502766fc8c55b1614168eb0b0c28f9ba89ca4d2e5a82d24c928b5effcbe5633dc18a38dba536d2b188
6
+ metadata.gz: d6c14e092f4f7bd2097163bb731c50cc24e4142a5c4857544237d908a3b0c71c54a9297ea905fe30adb2bcc218b649bbbbe5cd9381321097926c75ac27322732
7
+ data.tar.gz: 898f6dfe26822e55091af5ab6a320d4e087feee85925a174e6937ef1597ef701072589a9ebcb48cf4446cfd20e3a5aacff1c62870e1191a3e544d8de651d22df
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- core_merchant (0.10.0)
4
+ core_merchant (0.10.1)
5
5
  activesupport (~> 7.0)
6
6
  rails (~> 7.0)
7
7
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CoreMerchant
4
- VERSION = "0.10.1"
4
+ VERSION = "0.10.3"
5
5
  end
@@ -23,14 +23,10 @@ module CoreMerchant
23
23
  end
24
24
 
25
25
  def create_migration_file
26
- migration_template "migrate/create_core_merchant_subscription_plans.erb",
27
- "db/migrate/create_core_merchant_subscription_plans.rb"
28
-
29
- migration_template "migrate/create_core_merchant_subscriptions.erb",
30
- "db/migrate/create_core_merchant_subscriptions.rb"
31
-
32
- migration_template "migrate/create_core_merchant_subscription_events.erb",
33
- "db/migrate/create_core_merchant_subscription_events.rb"
26
+ migration_template(
27
+ "migrate/create_core_merchant_tables.erb",
28
+ "db/migrate/create_core_merchant_tables.rb"
29
+ )
34
30
  end
35
31
 
36
32
  def show_post_install
@@ -7,7 +7,7 @@ CoreMerchant.configure do |config|
7
7
  # include CoreMerchant::CustomerBehavior
8
8
  # ...
9
9
  # end
10
- # config.customer_class = "User"
10
+ config.customer_class = "User"
11
11
 
12
12
  # Set the class that will receive subscription notifications/
13
13
  # This class must include the CoreMerchant::SubscriptionListener module.
@@ -0,0 +1,47 @@
1
+ class CreateCoreMerchantTables < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>]
2
+ def change
3
+ create_table :core_merchant_subscription_plans do |t|
4
+ t.string :name_key, null: false
5
+ t.integer :price_cents, null: false, default: 0
6
+ t.string :duration, null: false
7
+ t.integer :introductory_price_cents
8
+ t.string :introductory_duration
9
+
10
+ t.timestamps
11
+
12
+ t.index :name_key, unique: true
13
+ end
14
+
15
+ create_table :core_merchant_subscriptions do |t|
16
+ t.references :customer, polymorphic: true, null: false
17
+ t.references :subscription_plan, null: false
18
+ t.integer :status, null: false, default: 0
19
+ t.datetime :canceled_at
20
+ t.string :cancellation_reason
21
+
22
+ t.datetime :start_date, null: false
23
+ t.datetime :trial_end_date
24
+ t.datetime :end_date
25
+ t.datetime :current_period_start_date
26
+ t.datetime :current_period_end_date
27
+ t.datetime :pause_start_date
28
+ t.datetime :pause_end_date
29
+
30
+ t.integer :current_period_price_cents
31
+
32
+ t.timestamps
33
+
34
+ t.index :status
35
+ end
36
+
37
+ create_table :core_merchant_subscription_events do |t|
38
+ t.references :subscription, null: false
39
+ t.string :event_type, null: false
40
+ t.json :metadata
41
+
42
+ t.timestamps
43
+
44
+ t.index :event_type
45
+ end
46
+ end
47
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: core_merchant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 0.10.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seyithan Teymur
@@ -158,9 +158,7 @@ files:
158
158
  - lib/generators/core_merchant/install_generator.rb
159
159
  - lib/generators/core_merchant/templates/core_merchant.en.yml
160
160
  - lib/generators/core_merchant/templates/core_merchant.rb
161
- - lib/generators/core_merchant/templates/migrate/create_core_merchant_subscription_events.erb
162
- - lib/generators/core_merchant/templates/migrate/create_core_merchant_subscription_plans.erb
163
- - lib/generators/core_merchant/templates/migrate/create_core_merchant_subscriptions.erb
161
+ - lib/generators/core_merchant/templates/migrate/create_core_merchant_tables.erb
164
162
  - sig/core_merchant.rbs
165
163
  homepage: https://github.com/theseyithan/core_merchant
166
164
  licenses:
@@ -1,14 +0,0 @@
1
- # Created by: rails generate core_merchant:install
2
- class CreateCoreMerchantSubscriptionEvents < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>]
3
- def change
4
- create_table :core_merchant_subscription_events do |t|
5
- t.references :subscription, null: false, foreign_key: { to_table: :core_merchant_subscriptions }
6
- t.string :event_type, null: false
7
- t.jsonb :metadata, default: {}, null: false
8
-
9
- t.timestamps
10
-
11
- t.index :event_type
12
- end
13
- end
14
- end
@@ -1,16 +0,0 @@
1
- # Created by: rails generate core_merchant:install
2
- class CreateCoreMerchantSubscriptionPlans < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>]
3
- def change
4
- create_table :core_merchant_subscription_plans do |t|
5
- t.string :name_key, null: false
6
- t.integer :price_cents, null: false, default: 0
7
- t.string :duration, null: false
8
- t.integer :introductory_price_cents
9
- t.string :introductory_duration
10
-
11
- t.timestamps
12
-
13
- t.index :name_key, unique: true
14
- end
15
- end
16
- end
@@ -1,26 +0,0 @@
1
- # Created by: rails generate core_merchant:install
2
- class CreateCoreMerchantSubscriptions < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>]
3
- def change
4
- create_table :core_merchant_subscriptions do |t|
5
- t.references :customer, polymorphic: true, null: false
6
- t.references :subscription_plan, null: false
7
- t.integer :status, null: false, default: 0
8
- t.datetime :canceled_at
9
- t.string :cancellation_reason
10
-
11
- t.datetime :start_date, null: false
12
- t.datetime :trial_end_date
13
- t.datetime :end_date
14
- t.datetime :current_period_start_date
15
- t.datetime :current_period_end_date
16
- t.datetime :pause_start_date
17
- t.datetime :pause_end_date
18
-
19
- t.integer :current_period_price_cents
20
-
21
- t.timestamps
22
-
23
- t.index :status
24
- end
25
- end
26
- end