paid_up 0.4.2 → 0.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e6b8a8a203df76df22fa4c37ec8a5a7d198bf689
4
- data.tar.gz: 942413114ad0a47dba0f741cd60e7bc31d7fbedc
3
+ metadata.gz: 35e62d57ac3d5544a65e363919f27e7d67b7d53c
4
+ data.tar.gz: 7feb9c307cd5ce4e5b58ee71094eec330182806e
5
5
  SHA512:
6
- metadata.gz: 7e3498b7b08787094995d6e8adcc450e6e546d07e0ce58f4ead019f136355990b15338fcdd1d99d2aa41db6145715782f81eaf943dd6814135b70713096611e9
7
- data.tar.gz: c3f511fa776371e79e1f483f4d19be95ee48ecde105da0a41a41b856b75c910ce082541858563b6f55a1042440735137e10b6fdb52130323a4fe30118830c21d
6
+ metadata.gz: a8fd43c94d94d2d4022a95e395aa24d5721c4297dc080e94c60198c09249548c43a044c082c4756ea2564020db0180f31867c68aaee187eb40ac97483615169b
7
+ data.tar.gz: 841f27343dbd53f8e49547133f81de0cd55142277af6da236b92c7ce5620847ef33a8a1754f63448525ed5e99a83e10c45e31b58bcc4d1613811ed581b1594cc
data/.travis.yml CHANGED
@@ -1,3 +1,4 @@
1
1
  language: ruby
2
2
  rvm:
3
- - ruby-2.2.1
3
+ - ruby-2.2.1
4
+ - 2.2.2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.2
1
+ 0.4.3
@@ -1,6 +1,6 @@
1
1
  Rails.configuration.stripe = {
2
- :publishable_key => ENV['STRIPE_PUBLISHABLE_KEY'],
3
- :secret_key => ENV['STRIPE_SECRET_KEY']
2
+ :publishable_key => ENV['STRIPE_PUBLISHABLE_KEY'],
3
+ :secret_key => ENV['STRIPE_SECRET_KEY']
4
4
  }
5
5
 
6
6
  Stripe.api_key = Rails.configuration.stripe[:secret_key]
@@ -14,7 +14,6 @@ module PaidUp
14
14
 
15
15
  def install_devise
16
16
  output "To start with, Devise is used to authenticate users. No need to install it separately, I'll do that now.", :magenta
17
- gsub_file "config/routes.rb", /devise_for :users/, ''
18
17
  generate("devise:install")
19
18
  generate("devise User")
20
19
  end
data/lib/paid_up.rb CHANGED
@@ -12,6 +12,7 @@ module PaidUp
12
12
  require 'stripe' # Needs to be required before paid_up/stripe_extensions
13
13
  require 'devise' # Needs to be required before paid_up/mixins
14
14
  require 'cancan'
15
+ require 'rolify'
15
16
 
16
17
  require 'paid_up/configuration'
17
18
  require 'paid_up/railtie'
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.4.2 ruby lib
5
+ # stub: paid_up 0.4.3 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "paid_up"
9
- s.version = "0.4.2"
9
+ s.version = "0.4.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"]
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.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karen Lundgren