pin_up 0.7.4 → 0.7.5
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/VERSION +1 -1
- data/pin_up.gemspec +2 -2
- data/spec/errors_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f59ccc22ac620982a7a995fc9859fb65520b5210
|
|
4
|
+
data.tar.gz: 5007412de854aa44147fae5b0e12baa6d6e45215
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c1c43eaedfdd4d2fefdd10f818a6b86bcc6e7e1418ff5f0f7cefa7fb1b716bb6ff3e3bd0082d1eded1ed052343fd81aae5477267641d0fefbdd5d3d96efe8165
|
|
7
|
+
data.tar.gz: 142613f3063e7c2c69eec326d24dc269286c488d3658b3d8f5eb748d79d0f8d9425da56e6048ff4837815781fa8d63563562ba447413f2e4e54b1713607ab2b2
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.7.
|
|
1
|
+
0.7.5
|
data/pin_up.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: pin_up 0.7.
|
|
5
|
+
# stub: pin_up 0.7.5 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "pin_up"
|
|
9
|
-
s.version = "0.7.
|
|
9
|
+
s.version = "0.7.5"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.authors = ["Daniel Nitsikopoulos"]
|
data/spec/errors_spec.rb
CHANGED
|
@@ -59,7 +59,7 @@ describe "Errors", :vcr, class: Pin::PinError do
|
|
|
59
59
|
address_state: "WA",
|
|
60
60
|
address_country: "Australia",
|
|
61
61
|
}}
|
|
62
|
-
expect{Pin::Charges.create(options)}.to raise_error(Pin::InvalidResource, "card_number_invalid: Card number is not a valid
|
|
62
|
+
expect{Pin::Charges.create(options)}.to raise_error(Pin::InvalidResource, "card_number_invalid: Card number is not a valid Visa or Mastercard number")
|
|
63
63
|
end
|
|
64
64
|
|
|
65
65
|
it "Should raise a ResourceNotFound error when can't find customer" do
|