pin_up 0.7.1 → 0.7.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 +4 -4
- data/VERSION +1 -1
- data/pin_up.gemspec +2 -2
- data/spec/receipt_spec.rb +1 -0
- 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: df55351386f042edaec159d8cd442265a421de73
|
|
4
|
+
data.tar.gz: 787a9b0ea6452cb5cb7bbe7cd0c4cba14017c889
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a108959cf54bb5f8413e23558a73e6b1f09ed1f2a516b92b97a8f36eff1f7aaa1421897b08c83d11d0c54cee21f8e7334fefeb681b7c3e564f94d08024468d8
|
|
7
|
+
data.tar.gz: b12522b9ff9ca5375ad334770a24e0a09a1ee4b859df3a09f75a9384d5d8aa272e01ec6303d9b2606255c1094e1da41bf71d83e157c7da303c478dde5ef08417
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.7.
|
|
1
|
+
0.7.2
|
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.2 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.2"
|
|
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/receipt_spec.rb
CHANGED
|
@@ -16,6 +16,7 @@ describe "Receipt", :vcr, class: Pin::Receipt do
|
|
|
16
16
|
it "should save an index.html file for the receipt" do
|
|
17
17
|
@receipt.save()
|
|
18
18
|
File.read('tmp/receipt.html').should include(@charge["token"])
|
|
19
|
+
File.delete('tmp/receipt.html')
|
|
19
20
|
end
|
|
20
21
|
|
|
21
22
|
it "should format a number as a currency" do
|