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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7db8795e52cc3f40773d7104222eb9f36ceea62a5d51ddc9a0f5215d2635021c
4
- data.tar.gz: ee17376ed75a5f28e755a7bd7e4e8bcf4e91fb2de23b96226f0837b6f678afe6
3
+ metadata.gz: e690f4a7b8ea6a4c35c93f5610d7c24d674e01f346ba7efe4fde29a006f1b65c
4
+ data.tar.gz: 6b0630b85e0375aec712c16f838e2f72afcd5bb08e13cf14954446614815fcad
5
5
  SHA512:
6
- metadata.gz: 007ca00d0dea9a363b5042fa2d82ce42e430a53c7773682b92b74a6c77ce4024756eab6df5b919b08f7b0699b45450b0cb69cb63e1546c6d429f427af520efc9
7
- data.tar.gz: d37cfd7ffc037cf80d119c366993d89a1d90a7291bd9a1fe4477b0d120c24e7f550baf948ea4bbdb1ec86c2e05f2644c34bdcf308625078c4b8c1498fc53a2a2
6
+ metadata.gz: 669a5d261e8b93f9649422203e85ed6ab4cd1a49097efcbad0820201869627ae3aa605ea3c5c6c0a7601853e951c78920841523ad6ca7c2ae44d356c6a7b9e59
7
+ data.tar.gz: f815812e608075b93621d38775a391704efa4c3e39e64102ae65a395670429cbbcd4048a58a6c3ff71992b5cbe33ff9cb157d3e49a16164a07d6cca58ca5a6b8
@@ -0,0 +1,11 @@
1
+ # editorconfig.org
2
+ root = true
3
+
4
+ [*]
5
+ end_of_line = lf
6
+ charset = utf-8
7
+
8
+ [*.rb]
9
+ indent_style = space
10
+ indent_size = 2
11
+ charset = utf-8
@@ -0,0 +1,4 @@
1
+ <!--
2
+ Please give us ~1 week to get back to you.
3
+ If you'd like to receive occasional updates, sign up for our newsletter at http://tinyletter.com/stripe-rails
4
+ -->
@@ -0,0 +1,4 @@
1
+ <!--
2
+ Please give us ~1 week to get back to you.
3
+ If you'd like to receive occasional updates, sign up for our newsletter at http://tinyletter.com/stripe-rails
4
+ -->
@@ -1,3 +1,7 @@
1
+ ## 1.5.2 (2018-10-15)
2
+
3
+ * fixes undefined method `expand_path' for Stripe::File:Class - Thanks to @BitesGit for reporting this.
4
+
1
5
  ## 1.5.1 (2018-10-01)
2
6
 
3
7
  * Allow statement_descriptor to be set on products - Thanks to @jeanmartin
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:
@@ -1,6 +1,6 @@
1
1
  module Stripe
2
2
  class InstallGenerator < ::Rails::Generators::Base
3
- source_root File.expand_path("../../templates", __FILE__)
3
+ source_root ::File.expand_path("../../templates", __FILE__)
4
4
 
5
5
  desc "copy plans.rb"
6
6
  def copy_plans_file
@@ -1,5 +1,5 @@
1
1
  module Stripe
2
2
  module Rails
3
- VERSION = '1.5.1'
3
+ VERSION = '1.5.2'
4
4
  end
5
5
  end
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.1
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-01 00:00:00.000000000 Z
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"