paid_up 0.5.3 → 0.6.0
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 +4 -4
- data/VERSION +1 -1
- data/app/controllers/paid_up/subscriptions_controller.rb +2 -2
- data/app/models/paid_up/plan.rb +2 -3
- data/app/models/paid_up/plan_feature_setting.rb +1 -1
- data/app/views/paid_up/features/_table.html.haml +1 -1
- data/app/views/paid_up/plans/index.html.haml +2 -2
- data/app/views/paid_up/subscriptions/index.html.haml +1 -1
- data/app/views/paid_up/subscriptions/new.html.haml +1 -1
- data/coverage/.last_run.json +1 -1
- data/coverage/.resultset.json +1275 -207
- data/db/migrate/20150407110101_create_paid_up_plans_table.rb +2 -2
- data/paid_up.gemspec +7 -3
- data/spec/controllers/paid_up/subscriptions_spec.rb +4 -4
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +29 -0
- data/spec/dummy/config/application.rb +1 -1
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20150523010839_create_paid_up_plans_table.paid_up.rb +2 -2
- data/spec/dummy/db/schema.rb +2 -2
- data/spec/dummy/db/seeds.rb +5 -5
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +1049 -0
- data/spec/support/plans_and_features.rb +5 -5
- metadata +6 -2
@@ -25,7 +25,7 @@ shared_context "plans and features" do
|
|
25
25
|
)
|
26
26
|
FactoryGirl.create(
|
27
27
|
:plan,
|
28
|
-
|
28
|
+
title: 'Anonymous',
|
29
29
|
stripe_id: 'anonymous-plan',
|
30
30
|
sort_order: -1
|
31
31
|
).reload
|
@@ -43,7 +43,7 @@ shared_context "plans and features" do
|
|
43
43
|
)
|
44
44
|
FactoryGirl.create(
|
45
45
|
:plan,
|
46
|
-
|
46
|
+
title: 'Free',
|
47
47
|
stripe_id: 'free-plan',
|
48
48
|
sort_order: 0
|
49
49
|
).reload
|
@@ -61,7 +61,7 @@ shared_context "plans and features" do
|
|
61
61
|
)
|
62
62
|
FactoryGirl.create(
|
63
63
|
:plan,
|
64
|
-
|
64
|
+
title: 'No Ads',
|
65
65
|
stripe_id: 'no-ads-plan',
|
66
66
|
sort_order: 1
|
67
67
|
).reload
|
@@ -87,7 +87,7 @@ shared_context "plans and features" do
|
|
87
87
|
)
|
88
88
|
FactoryGirl.create(
|
89
89
|
:plan,
|
90
|
-
|
90
|
+
title: 'Group Leader',
|
91
91
|
stripe_id: 'group-leader-plan',
|
92
92
|
sort_order: 2
|
93
93
|
).reload
|
@@ -129,7 +129,7 @@ shared_context "plans and features" do
|
|
129
129
|
)
|
130
130
|
FactoryGirl.create(
|
131
131
|
:plan,
|
132
|
-
|
132
|
+
title: 'Professional',
|
133
133
|
description: 'This is the description of the Professional plan.',
|
134
134
|
stripe_id: 'professional-plan',
|
135
135
|
sort_order: 3
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: paid_up
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Karen Lundgren
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-05-
|
11
|
+
date: 2015-05-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -359,6 +359,10 @@ files:
|
|
359
359
|
- spec/dummy/app/models/user.rb
|
360
360
|
- spec/dummy/app/views/layouts/application.html.haml
|
361
361
|
- spec/dummy/app/views/pages/index.html.haml
|
362
|
+
- spec/dummy/bin/bundle
|
363
|
+
- spec/dummy/bin/rails
|
364
|
+
- spec/dummy/bin/rake
|
365
|
+
- spec/dummy/bin/setup
|
362
366
|
- spec/dummy/config.ru
|
363
367
|
- spec/dummy/config/application.rb
|
364
368
|
- spec/dummy/config/boot.rb
|