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 +4 -4
- data/.travis.yml +2 -1
- data/VERSION +1 -1
- data/config/initializers/stripe.rb +2 -2
- data/lib/generators/paid_up/install/install_generator.rb +0 -1
- data/lib/paid_up.rb +1 -0
- data/paid_up.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 35e62d57ac3d5544a65e363919f27e7d67b7d53c
|
|
4
|
+
data.tar.gz: 7feb9c307cd5ce4e5b58ee71094eec330182806e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8fd43c94d94d2d4022a95e395aa24d5721c4297dc080e94c60198c09249548c43a044c082c4756ea2564020db0180f31867c68aaee187eb40ac97483615169b
|
|
7
|
+
data.tar.gz: 841f27343dbd53f8e49547133f81de0cd55142277af6da236b92c7ce5620847ef33a8a1754f63448525ed5e99a83e10c45e31b58bcc4d1613811ed581b1594cc
|
data/.travis.yml
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.3
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Rails.configuration.stripe = {
|
|
2
|
-
|
|
3
|
-
|
|
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
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.
|
|
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.
|
|
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"]
|