stripe-rails 1.6.0 → 1.6.1

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
  SHA256:
3
- metadata.gz: c921c6c2d6db4017d7a172379841880bf1c1b9daa4982bc41b5d14d31d54a63d
4
- data.tar.gz: 00d27eefbfb5558f422b704447caa73d45159fd1773ce47e1d70a9370bc2bb40
3
+ metadata.gz: 4925781be88d86f0b3e1aa2811bd6498a03f68a0d85c0cac7f2135ebee3d4e14
4
+ data.tar.gz: c3d71a7f8d057b3c5a4a715907842dbf44512ddd508a1baf81f0ee74b8348e4f
5
5
  SHA512:
6
- metadata.gz: 839bfadc000f6e76cd8a5414ec6e44e9687d97558cae102d8a1cc2741226c7ae3dc1481f6d05c8910acc2b55b85d6fe61ccc51579c3feb197d6cf76df0550b18
7
- data.tar.gz: 6ab5709d3cc5367c4d34ba0065e0f886bc33b828925953bffceb86ef811a9d3e66d9a06b27bfe33c58ec7a46937896a82cfa0fdddca6a4e9cb22b59f6396f6f0
6
+ metadata.gz: c6fea8783eb4b7c18231c061317c48595c9d0504481d1766c0c584365dd86482738ae47a301c08eeca46535778f68d0a4d88c777a3fcdaae856f0a322e2a2f96
7
+ data.tar.gz: 910d3aa144e182e9e0972eb363497fd0587ad59ceaee6576ec32507941e03799cad3b1013e16fdfeb1c6b870bab16d2e8fb970f86f0d570fe2c404b78e1012cd
data/Changelog.md CHANGED
@@ -1,4 +1,8 @@
1
- ## 1.6.0 (2010-01-08)
1
+ ## 1.6.1 (2019-03-04)
2
+
3
+ * Add new invoice webhooks thanks @noahezekwugo !
4
+
5
+ ## 1.6.0 (2019-01-08)
2
6
 
3
7
  * New Year New Feature: Easily include Stripe Elements into your project thanks to @garrettqmartin8 !
4
8
  * Travis is now testing the gem on Ruby 2.6.0
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![Build Status](https://travis-ci.org/tansengming/stripe-rails.png?branch=master)](https://travis-ci.org/tansengming/stripe-rails)
4
4
  [![Code Climate](https://codeclimate.com/github/tansengming/stripe-rails/badges/gpa.svg)](https://codeclimate.com/github/tansengming/stripe-rails)
5
5
  [![Test Coverage](https://codeclimate.com/github/tansengming/stripe-rails/badges/coverage.svg)](https://codeclimate.com/github/tansengming/stripe-rails/coverage)
6
-
6
+ [![Tidelift](https://tidelift.com/badges/github/tansengming/stripe-rails)](#)
7
7
 
8
8
  This gem can help your rails application integrate with Stripe in the following ways
9
9
 
@@ -14,6 +14,8 @@ This gem can help your rails application integrate with Stripe in the following
14
14
 
15
15
  [📫 Sign up for the Newsletter](http://tinyletter.com/stripe-rails) to receive occasional updates.
16
16
 
17
+ [Professionally supported stripe-rails is coming soon](https://tidelift.com/subscription/pkg/rubygems-stripe-rails?utm_source=rubygems-stripe-rails&utm_medium=referral&utm_campaign=readme)
18
+
17
19
  ---
18
20
 
19
21
  [Installation](#installation)
@@ -41,8 +43,6 @@ This gem can help your rails application integrate with Stripe in the following
41
43
 
42
44
  [Code of Conduct](#code-of-conduct)
43
45
 
44
- [Priority Support](#priority-support)
45
-
46
46
  ## Installation
47
47
 
48
48
  Add this line to your application's Gemfile:
@@ -556,7 +556,3 @@ Please note that this project is released with a Contributor Code of
556
556
  Conduct. By participating in this project you agree to abide by its
557
557
  terms, which can be found in the `CODE_OF_CONDUCT.md` file in this
558
558
  repository.
559
-
560
- ## Priority Support
561
-
562
- Paid support is also available from the maintainer of this gem. If you need help setting up, designing your Stripe integration or have custom software development needs please feel free to email [sengming@sanemen.com](mailto:sengming@sanemen.com?subject=stripe-rails-support).
@@ -44,11 +44,14 @@ module Stripe
44
44
  callback 'customer.subscription.updated'
45
45
  callback 'file.created'
46
46
  callback 'invoice.created'
47
+ callback 'invoice.finalized'
48
+ callback 'invoice.marked_uncollectible'
47
49
  callback 'invoice.payment_failed'
48
50
  callback 'invoice.payment_succeeded'
49
51
  callback 'invoice.sent'
50
52
  callback 'invoice.upcoming'
51
53
  callback 'invoice.updated'
54
+ callback 'invoice.voided'
52
55
  callback 'invoiceitem.created'
53
56
  callback 'invoiceitem.deleted'
54
57
  callback 'invoiceitem.updated'
@@ -1,5 +1,5 @@
1
1
  module Stripe
2
2
  module Rails
3
- VERSION = '1.6.0'
3
+ VERSION = '1.6.1'
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.6.0
4
+ version: 1.6.1
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: 2019-01-08 00:00:00.000000000 Z
13
+ date: 2019-03-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails