paid_up 0.9.0 → 0.9.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 +4 -4
- data/VERSION +1 -1
- data/app/views/paid_up/plans/index.html.haml +1 -1
- data/config/locales/en.yml +1 -0
- data/coverage/.resultset.json +8 -8
- data/paid_up.gemspec +3 -3
- data/spec/controllers/paid_up/subscriptions_spec.rb +1 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e4257b227a914f099573fcb7b7f19c8792424c8a
|
|
4
|
+
data.tar.gz: 6f6698e0edce9fe33f7825e8a22ad32d845e06bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f64b48408433f454e18be2d99305a91b6015ee80b8fc66c603e6f7b6e65154810ac949797090992a3baa532d3c9403f47ee4590da25be1f52001a1a8408cf353
|
|
7
|
+
data.tar.gz: cec0743c06b83497c3b4d6a12b2696eaafbbd09a5c9e5b9b0eb4df2fdee926152a1b3ce087e59f6b8808569f5cca1a2b666ef5cb110f6cc10f8a63cfbab0b6fe
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.1
|
data/config/locales/en.yml
CHANGED
data/coverage/.resultset.json
CHANGED
|
@@ -1350,12 +1350,12 @@
|
|
|
1350
1350
|
null,
|
|
1351
1351
|
null,
|
|
1352
1352
|
1,
|
|
1353
|
-
|
|
1354
|
-
|
|
1353
|
+
188,
|
|
1354
|
+
188,
|
|
1355
1355
|
0,
|
|
1356
1356
|
0,
|
|
1357
1357
|
null,
|
|
1358
|
-
|
|
1358
|
+
188,
|
|
1359
1359
|
null,
|
|
1360
1360
|
null,
|
|
1361
1361
|
1,
|
|
@@ -1980,16 +1980,16 @@
|
|
|
1980
1980
|
null,
|
|
1981
1981
|
null,
|
|
1982
1982
|
1,
|
|
1983
|
-
|
|
1984
|
-
|
|
1983
|
+
190,
|
|
1984
|
+
190,
|
|
1985
1985
|
null,
|
|
1986
1986
|
0,
|
|
1987
1987
|
null,
|
|
1988
1988
|
null,
|
|
1989
1989
|
null,
|
|
1990
1990
|
1,
|
|
1991
|
-
|
|
1992
|
-
|
|
1991
|
+
190,
|
|
1992
|
+
190,
|
|
1993
1993
|
null,
|
|
1994
1994
|
0,
|
|
1995
1995
|
null,
|
|
@@ -2901,6 +2901,6 @@
|
|
|
2901
2901
|
null
|
|
2902
2902
|
]
|
|
2903
2903
|
},
|
|
2904
|
-
"timestamp":
|
|
2904
|
+
"timestamp": 1455133171
|
|
2905
2905
|
}
|
|
2906
2906
|
}
|
data/paid_up.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
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.1 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.1"
|
|
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"]
|
|
13
13
|
s.authors = ["Karen Lundgren"]
|
|
14
|
-
s.date = "2016-02-
|
|
14
|
+
s.date = "2016-02-14"
|
|
15
15
|
s.description = "Allows a model of your choosing (such as users) to subscribe to a plan, which enables features."
|
|
16
16
|
s.email = "karen.e.lundgren@gmail.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -198,7 +198,7 @@ RSpec.describe PaidUp::SubscriptionsController do
|
|
|
198
198
|
end
|
|
199
199
|
context "sets a flash message" do
|
|
200
200
|
subject { flash[:notice] }
|
|
201
|
-
it { should match /You are now subscribed to the
|
|
201
|
+
it { should match /You are now subscribed to the Professional Plan/ }
|
|
202
202
|
end
|
|
203
203
|
end
|
|
204
204
|
end
|
data/spec/dummy/db/test.sqlite3
CHANGED
|
Binary file
|
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.9.
|
|
4
|
+
version: 0.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karen Lundgren
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-02-
|
|
11
|
+
date: 2016-02-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|