stripe-rails 1.5.1 → 1.5.2
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/.editorconfig +11 -0
- data/.github/issue_template.md +4 -0
- data/.github/pull_request_template.md +4 -0
- data/Changelog.md +4 -0
- data/README.md +25 -0
- data/lib/generators/stripe/install_generator.rb +1 -1
- data/lib/stripe/rails/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e690f4a7b8ea6a4c35c93f5610d7c24d674e01f346ba7efe4fde29a006f1b65c
|
|
4
|
+
data.tar.gz: 6b0630b85e0375aec712c16f838e2f72afcd5bb08e13cf14954446614815fcad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 669a5d261e8b93f9649422203e85ed6ab4cd1a49097efcbad0820201869627ae3aa605ea3c5c6c0a7601853e951c78920841523ad6ca7c2ae44d356c6a7b9e59
|
|
7
|
+
data.tar.gz: f815812e608075b93621d38775a391704efa4c3e39e64102ae65a395670429cbbcd4048a58a6c3ff71992b5cbe33ff9cb157d3e49a16164a07d6cca58ca5a6b8
|
data/.editorconfig
ADDED
data/Changelog.md
CHANGED
data/README.md
CHANGED
|
@@ -12,6 +12,31 @@ This gem can help your rails application integrate with Stripe in the following
|
|
|
12
12
|
* manage plans and coupons from within your app.
|
|
13
13
|
* painlessly receive and validate webhooks from stripe.
|
|
14
14
|
|
|
15
|
+
[📫 Sign up for the Newsletter](http://tinyletter.com/stripe-rails) to receive occasional updates.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
[Installation](#installation)
|
|
20
|
+
- [Setup your API keys](#setup-your-api-keys)
|
|
21
|
+
- [Manually set your API version (optional)](#manually-set-your-api-version-optional)
|
|
22
|
+
- [Setup your payment configuration](#setup-your-payment-configuration)
|
|
23
|
+
- [Configuring your plans and coupons](#configuring-your-plans-and-coupons)
|
|
24
|
+
|
|
25
|
+
[Webhooks](#webhooks)
|
|
26
|
+
- [Signed Webhooks](#signed-webhooks)
|
|
27
|
+
- [Testing Signed Webhooks Locally](#testing-signed-webhooks-locally)
|
|
28
|
+
- [Disabling auto mount](#disabling-auto-mount)
|
|
29
|
+
- [Responding to webhooks](#responding-to-webhooks)
|
|
30
|
+
- [Critical and non-critical hooks](#critical-and-non-critical-hooks)
|
|
31
|
+
- [Filtering Callbacks](#filtering-callbacks)
|
|
32
|
+
- [Catchall Callback](#catchall-callback)
|
|
33
|
+
|
|
34
|
+
[Unit testing](#unit-testing)
|
|
35
|
+
|
|
36
|
+
[Thanks](#thanks)
|
|
37
|
+
|
|
38
|
+
[Code of Conduct](#code-of-conduct)
|
|
39
|
+
|
|
15
40
|
## Installation
|
|
16
41
|
|
|
17
42
|
Add this line to your application's Gemfile:
|
data/lib/stripe/rails/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stripe-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Charles Lowell
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2018-10-
|
|
13
|
+
date: 2018-10-15 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rails
|
|
@@ -62,6 +62,9 @@ extensions: []
|
|
|
62
62
|
extra_rdoc_files: []
|
|
63
63
|
files:
|
|
64
64
|
- ".codeclimate.yml"
|
|
65
|
+
- ".editorconfig"
|
|
66
|
+
- ".github/issue_template.md"
|
|
67
|
+
- ".github/pull_request_template.md"
|
|
65
68
|
- ".gitignore"
|
|
66
69
|
- ".rubocop.yml"
|
|
67
70
|
- ".travis.yml"
|