stripe-rails 1.2.1 → 1.2.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: 527a4386b9b19687aa3a803c8645a814d7f9c5e2ece5a51033a453eafcceab58
4
- data.tar.gz: 5fd3c8566a15edbf6319658a3adbca642dbba53882bab207732c3dc946533edd
3
+ metadata.gz: e4c623892c4bdfc60f16d8835a62c2e6f948f3e01be9831e453abd5d237b30fe
4
+ data.tar.gz: 88531135d52fc3a941949c335de18d0dc6731316eb4fd58a34d8d6ee34637078
5
5
  SHA512:
6
- metadata.gz: 748847a11c9e7e9741b6da139fea408ee6a95f3768f8bc8c35ae4f64dad843661e317502c7d898754d309dc34797cdffa5d0ab5f6151e50a8402ce13f5fcda91
7
- data.tar.gz: fdd425809e6d4522f752c949c1eab0546524cd255ff97b6591b6a86bd962d14cdab2a7cde6c42573e1dce17eae1fbffd7f672473adc77a3c4cb5825ba8692217
6
+ metadata.gz: 2f82e72f5d0c3179c3af7c6fabd10213eb75c0bd7cacd5b80db5ad8e1b4e96ae33749777b30ef35d20c5f58ba466d242025ce35d1fd1b2baf8e68d80a510804e
7
+ data.tar.gz: dba57aec52d0ebfab2cfe72d5e369ec8e45110ab9758546121a21f340b0db20894bf09ffedee10af030182f9f6e1f0e36be875dd77104bb6f3a2301fd89aa394
data/.travis.yml CHANGED
@@ -1,10 +1,10 @@
1
1
  language: ruby
2
2
  rvm:
3
3
  - 2.5.0
4
- - 2.4.1
5
- - 2.3.4
6
- - 2.2.7
7
- - 2.1.9
4
+ - 2.4.3
5
+ - 2.3.6
6
+ - 2.2.9
7
+ - 2.1.10
8
8
  env:
9
9
  global:
10
10
  - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct;
@@ -17,7 +17,7 @@ before_script:
17
17
  script:
18
18
  - bundle exec rake
19
19
  - if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ `basename $BUNDLE_GEMFILE` == "Gemfile"
20
- ] && [ ${RUBY_VERSION:5:3} == "2.4" ] ; then echo "Sending Coverage..."; ./cc-test-reporter
20
+ ] && [ ${RUBY_VERSION:5:3} == "2.5" ] ; then echo "Sending Coverage..."; ./cc-test-reporter
21
21
  after-build --exit-code $TRAVIS_TEST_RESULT; fi
22
22
  gemfile:
23
23
  - Gemfile
@@ -25,9 +25,9 @@ gemfile:
25
25
  - gemfiles/rails5.gemfile
26
26
  matrix:
27
27
  exclude:
28
- - rvm: 2.1.9
28
+ - rvm: 2.1.10
29
29
  gemfile: Gemfile
30
- - rvm: 2.1.9
30
+ - rvm: 2.1.10
31
31
  gemfile: gemfiles/rails5.gemfile
32
32
  notifications:
33
33
  slack:
data/Changelog.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 1.2.2 (2018-04-16)
2
+
3
+ * adds callback form `customer.source.expiring`. Thanks @Japestrale!
4
+
1
5
  ## 1.2.1 (2018-03-22)
2
6
 
3
7
  * Fixes Stripe API update on 2018-02-05 that breaks the plan builder (thanks to @georgecheng for reporting this!)
data/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # Stripe::Rails: A Rails Engine for use with [stripe.com](https://stripe.com)
2
2
  [![Gem Version](https://badge.fury.io/rb/stripe-rails.png)](http://badge.fury.io/rb/stripe-rails)
3
- [![Build Status](https://travis-ci.org/Everapps/stripe-rails.png?branch=master)](https://travis-ci.org/Everapps/stripe-rails)
4
- [![Code Climate](https://codeclimate.com/github/Everapps/stripe-rails/badges/gpa.svg)](https://codeclimate.com/github/Everapps/stripe-rails)
5
- [![Test Coverage](https://codeclimate.com/github/Everapps/stripe-rails/badges/coverage.svg)](https://codeclimate.com/github/Everapps/stripe-rails/coverage)
6
- [![Dependency Status](https://gemnasium.com/thefrontside/stripe-rails.png)](https://gemnasium.com/thefrontside/stripe-rails)
3
+ [![Build Status](https://travis-ci.org/tansengming/stripe-rails.png?branch=master)](https://travis-ci.org/tansengming/stripe-rails)
4
+ [![Code Climate](https://codeclimate.com/github/tansengming/stripe-rails/badges/gpa.svg)](https://codeclimate.com/github/tansengming/stripe-rails)
5
+ [![Test Coverage](https://codeclimate.com/github/tansengming/stripe-rails/badges/coverage.svg)](https://codeclimate.com/github/tansengming/stripe-rails/coverage)
6
+ [![Dependency Status](https://gemnasium.com/tansengming/stripe-rails.png)](https://gemnasium.com/tansengming/stripe-rails)
7
7
 
8
8
 
9
9
  This gem can help your rails application integrate with Stripe in the following ways
@@ -36,6 +36,7 @@ module Stripe
36
36
  callback 'customer.discount.updated'
37
37
  callback 'customer.source.created'
38
38
  callback 'customer.source.deleted'
39
+ callback 'customer.source.expiring'
39
40
  callback 'customer.source.updated'
40
41
  callback 'customer.subscription.created'
41
42
  callback 'customer.subscription.deleted'
@@ -1,5 +1,5 @@
1
1
  module Stripe
2
2
  module Rails
3
- VERSION = '1.2.1'
3
+ VERSION = '1.2.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.2.1
4
+ version: 1.2.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-03-22 00:00:00.000000000 Z
13
+ date: 2018-04-16 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails