paid_up 0.9.2 → 0.9.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
  SHA1:
3
- metadata.gz: 954e8e00f2f48658af2ebd13a213bfcf5fce324c
4
- data.tar.gz: bd53708ca30d9ec690cd59501dc6b69199db3b3f
3
+ metadata.gz: 4f4c21ff55db11d986776a4d3ddcc07ed1d38322
4
+ data.tar.gz: c7912c2770d4772130c5f0bbb136f16704efb7ac
5
5
  SHA512:
6
- metadata.gz: 722c22b55fb992937f6295aa57516bf220892eb777c0ba91a8dbe67e6563e3d51f6da2ff5b299336438571fbb9b4cf7d135a3390f65335c0aa18531e8b999dc8
7
- data.tar.gz: 6870caa2fa1b6c5dd392c5a6b0ac5904c34579d3a4d1b41821d9181f239333f8d4dbe4515f84c7fff6b117f7070a1cb013e4fabe1534296ce201322c29e93615
6
+ metadata.gz: 085dafb37c43c07a25f3c9d6c33472a448521cc61c8f6b12ff0c5700b3f8c351c203606b2656d8b44d847a4d8e82b9c399b13b6152798e9b9366a6a1d2f088eb
7
+ data.tar.gz: a6f00d610204e23b9792bb4aa707ad08d5838f8b4f7e66e46808e968a825de77dfe6e5713d312a8e40bd89a71b6736fcabbf930ddc923f4a579e444eb563c580
data/.travis.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  language: ruby
2
2
  rvm:
3
- - ruby-2.2.1
4
3
  - 2.2.2
5
- - 2.2.3
4
+ - 2.2.3
5
+ - 2.3.0
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 `My Account` under `Subscriptions` and `Email`, as they have a big effect on how your site behaves.
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.2
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.2 ruby lib
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.2"
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.2
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
@@ -1,5 +0,0 @@
1
- require "rails_helper"
2
-
3
- RSpec.describe SubscriptionMailer, type: :mailer do
4
- pending "add some examples to (or delete) #{__FILE__}"
5
- end
@@ -1,7 +0,0 @@
1
- # Preview all emails at http://localhost:3000/rails/mailers/subscription_mailer
2
- class SubscriptionMailerPreview < ActionMailer::Preview
3
- def failed_payment_email
4
- @invoice = nil
5
- SubscriptionMailer.failed_payment_email
6
- end
7
- end