paid_up 0.9.2 → 0.9.3
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/.travis.yml +2 -2
- data/README.md +1 -1
- data/VERSION +1 -1
- data/paid_up.gemspec +2 -4
- metadata +1 -3
- data/spec/mailers/paid_up/subscription_mailer_spec.rb +0 -5
- data/spec/mailers/previews/paid_up/subscription_mailer_preview.rb +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f4c21ff55db11d986776a4d3ddcc07ed1d38322
|
|
4
|
+
data.tar.gz: c7912c2770d4772130c5f0bbb136f16704efb7ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 085dafb37c43c07a25f3c9d6c33472a448521cc61c8f6b12ff0c5700b3f8c351c203606b2656d8b44d847a4d8e82b9c399b13b6152798e9b9366a6a1d2f088eb
|
|
7
|
+
data.tar.gz: a6f00d610204e23b9792bb4aa707ad08d5838f8b4f7e66e46808e968a825de77dfe6e5713d312a8e40bd89a71b6736fcabbf930ddc923f4a579e444eb563c580
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -45,7 +45,7 @@ Coupons do not need any further configuration, other than adding them to your St
|
|
|
45
45
|
|
|
46
46
|
Next, add a `Stripe::Customer` to serve as the Anonymous User, and subscribe that customer to the anonymous plan. Note the customer's `id` and copy that into your stripe configuration file.
|
|
47
47
|
|
|
48
|
-
Pay close attention to the settings in `
|
|
48
|
+
Pay close attention to the settings in `Account Settings` under `Subscriptions` and `Emails`, as they have a big effect on how your site behaves.
|
|
49
49
|
|
|
50
50
|
## Features Setup
|
|
51
51
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.3
|
data/paid_up.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: paid_up 0.9.
|
|
5
|
+
# stub: paid_up 0.9.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "paid_up"
|
|
9
|
-
s.version = "0.9.
|
|
9
|
+
s.version = "0.9.3"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
@@ -164,8 +164,6 @@ Gem::Specification.new do |s|
|
|
|
164
164
|
"spec/factories/plan.rb",
|
|
165
165
|
"spec/factories/plan_feature_setting.rb",
|
|
166
166
|
"spec/factories/user.rb",
|
|
167
|
-
"spec/mailers/paid_up/subscription_mailer_spec.rb",
|
|
168
|
-
"spec/mailers/previews/paid_up/subscription_mailer_preview.rb",
|
|
169
167
|
"spec/models/group_spec.rb",
|
|
170
168
|
"spec/models/paid_up/feature_spec.rb",
|
|
171
169
|
"spec/models/paid_up/plan_feature_setting_spec.rb",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: paid_up
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karen Lundgren
|
|
@@ -472,8 +472,6 @@ files:
|
|
|
472
472
|
- spec/factories/plan.rb
|
|
473
473
|
- spec/factories/plan_feature_setting.rb
|
|
474
474
|
- spec/factories/user.rb
|
|
475
|
-
- spec/mailers/paid_up/subscription_mailer_spec.rb
|
|
476
|
-
- spec/mailers/previews/paid_up/subscription_mailer_preview.rb
|
|
477
475
|
- spec/models/group_spec.rb
|
|
478
476
|
- spec/models/paid_up/feature_spec.rb
|
|
479
477
|
- spec/models/paid_up/plan_feature_setting_spec.rb
|