stripe_tester 0.1.1 → 0.1.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
  SHA1:
3
- metadata.gz: b070ce60a2832b4018406ca57ba493aae36469b5
4
- data.tar.gz: b276c5708dcccbf7e91ec95a090977bb26bcae00
3
+ metadata.gz: 06131adec838b3da447a6a2a62a582be98cd9263
4
+ data.tar.gz: 57c6530b4ed6cffae6915b8cdbd3ea6f98509f9b
5
5
  SHA512:
6
- metadata.gz: 0ab4b920270436c57b6d853e13081c56c916d0e3459369f0a5b1a510b942c2dd8f1682bb345dc89d3bb857a6a116ec1845a6c946d9f1c9725b9a7a6f6b5d1307
7
- data.tar.gz: 4580f3c033a6646c9291a4b1902a70910f6760ee4b808888a67e6dd3214530865e7e7fad772d958aea5bd6a8ef30b11550fc3fa9a18b7108b62958fe4409bade
6
+ metadata.gz: ee26855e590a510792b2920f5abc64921c51787dc1605aa4142f169a507ed2ca8b1e7c54808d1badfd2ff1ed6b78f7fb4d464842a6816c08c1053b5d4fe8da60
7
+ data.tar.gz: 4b1f851385f8baced3add0f5a80c27b44f727b8cc707a89a484f0d406665862fa1773df5b8b021904220a3da91b8a985a5dabf53bebb8a798092973eb85c48d3
data/README.md CHANGED
@@ -10,7 +10,7 @@ StripeTester allows you to submit webhooks to your application without hitting S
10
10
 
11
11
  Add this line to your application's Gemfile:
12
12
  ```ruby
13
- gem 'stripe_tester', "~> 0.1.1"
13
+ gem 'stripe_tester', "~> 0.1.2"
14
14
  ```
15
15
  And then execute:
16
16
  ```bash
@@ -1,3 +1,3 @@
1
1
  module StripeTester
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
data/lib/stripe_tester.rb CHANGED
@@ -6,7 +6,7 @@ require 'psych'
6
6
 
7
7
  module StripeTester
8
8
 
9
- LATEST_STRIPE_VERSION = "2013-08-13"
9
+ LATEST_STRIPE_VERSION = "2013-10-07"
10
10
 
11
11
  # send the url the webhook event
12
12
  # There are two options you can use. :method=>:overwrite, or :method=>:merge
@@ -81,7 +81,7 @@ describe StripeTester do
81
81
 
82
82
  response = StripeTester.post_to_url(data)
83
83
 
84
- expect(response).to be_true
84
+ expect(response).to be_truthy
85
85
  end
86
86
 
87
87
  it "#post_to_url should raise an error when request fails" do
@@ -114,7 +114,7 @@ describe StripeTester do
114
114
 
115
115
  response = StripeTester.post_to_url(data)
116
116
 
117
- expect(response).to be_true
117
+ expect(response).to be_truthy
118
118
  end
119
119
 
120
120
  it "#overwrite_attributes should overwrite attributes in default data to custom data" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stripe_tester
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Buttercloud