pay 2.0.0 → 2.0.1

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: 9665c51290c7d5fddc48d2c7a719f936907eb3a4c818c1bd886ddd0a01b3ac8f
4
- data.tar.gz: 845efceadcd8e44a93228d30b82ec438e9d58842f683c16b97ebd44aef7b53bf
3
+ metadata.gz: dbf74f5b1048258abdc1b4fdd0db42685fc032409846abcd58c3b5e000ac8265
4
+ data.tar.gz: 3436c03f1aa85992d73d2987516c43c811f709187af110a5848f8b4b3d18ae65
5
5
  SHA512:
6
- metadata.gz: ff36eeb6ea85bb3d7d057b75534d3ce02fd0b193e3c6356d52d03c17f8108add95b961299849511a1b744df86d8c38f16fb47650a769721531f722b01682b823
7
- data.tar.gz: 1cab7944c0c018079b5acb4f08e13c5ddaee3881a977a618f1e84730fc6bb24040b8f60ff2da924fd8957dea81ebc5208b8b0ef3cda7c9aa84c4a2819804b5be
6
+ metadata.gz: 4d7a70463644451159076dd2eb0fb6278312629ac870b1bc8dde9fd9d28224f23714001d55edecb49776162c56537cbbfbbbdd41fbcad5e162f4caa67c80577f
7
+ data.tar.gz: f427da48303706ac1c0001a17dd7d279f9deb8915671f1ccd6154ebfefde69ca9ba8615b0fd415fe7ee0c5ae9d26794d968e58231099a23cea0f3e7d67add81b
@@ -1,4 +1,4 @@
1
- class CreateSubscriptions < ActiveRecord::Migration[4.2]
1
+ class CreatePaySubscriptions < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :pay_subscriptions do |t|
4
4
  t.references :owner
@@ -1,4 +1,4 @@
1
- class CreateCharges < ActiveRecord::Migration[5.1]
1
+ class CreatePayCharges < ActiveRecord::Migration[5.1]
2
2
  def change
3
3
  create_table :pay_charges do |t|
4
4
  t.references :owner
@@ -1,4 +1,4 @@
1
- class AddStatusToSubscriptions < ActiveRecord::Migration[5.2]
1
+ class AddStatusToPaySubscriptions < ActiveRecord::Migration[5.2]
2
2
  def self.up
3
3
  add_column :pay_subscriptions, :status, :string
4
4
 
@@ -1,3 +1,3 @@
1
1
  module Pay
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pay
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Charnes
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-02-09 00:00:00.000000000 Z
12
+ date: 2020-02-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -232,10 +232,10 @@ files:
232
232
  - app/views/pay/user_mailer/subscription_renewing.html.erb
233
233
  - config/locales/en.yml
234
234
  - config/routes.rb
235
- - db/migrate/20170205020145_create_subscriptions.rb
235
+ - db/migrate/20170205020145_create_pay_subscriptions.rb
236
236
  - db/migrate/20170503131610_add_fields_to_billable.rb
237
- - db/migrate/20170727235816_create_charges.rb
238
- - db/migrate/20190816015720_add_status_to_subscriptions.rb
237
+ - db/migrate/20170727235816_create_pay_charges.rb
238
+ - db/migrate/20190816015720_add_status_to_pay_subscriptions.rb
239
239
  - lib/generators/pay/email_views_generator.rb
240
240
  - lib/generators/pay/views_generator.rb
241
241
  - lib/pay.rb
@@ -284,7 +284,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
284
284
  - !ruby/object:Gem::Version
285
285
  version: '0'
286
286
  requirements: []
287
- rubygems_version: 3.1.2
287
+ rubygems_version: 3.0.3
288
288
  signing_key:
289
289
  specification_version: 4
290
290
  summary: A Ruby on Rails subscription engine.