paypkg 0.1.5 → 0.1.6
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/CHANGELOG.md +4 -0
- data/lib/paypkg/paypal-currencies.rb +1 -1
- data/lib/paypkg/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df55431230a19b88c22d69db86810580ac7478e5
|
|
4
|
+
data.tar.gz: e6effbe3edeecfd41c1c5e7bc1402031f2407891
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c351d3c47c87f662b7200433a7676cad1ed4140ee71f14e9ba7ad31f3537828b11901cfb0254a6902e5558ba34cc9c3f1cc5deb5911f505945159e0816904321
|
|
7
|
+
data.tar.gz: f812217ec769e66adff711dde542bcffa4123328df0601e94e29f739661e08884723505475c9924aa75c398be2fbd0b518b0263d075d64862c0ed7e59d3cccd0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
0.1.6
|
|
2
|
+
-----
|
|
3
|
+
* Changed the spelling of Polish currency to its US-ASCII equivalent to avoid getting the error 'invalid multibyte char' during require.
|
|
4
|
+
|
|
1
5
|
0.1.5
|
|
2
6
|
* Moved the release date into the same file as the version so as not to forget to change it along with the version number.
|
|
3
7
|
|
|
@@ -20,7 +20,7 @@ module PaypalCurrencies
|
|
|
20
20
|
"New Zealand dollar" => "NZD",
|
|
21
21
|
"Norwegian krone" => "NOK",
|
|
22
22
|
"Philippine peso" => "PHP",
|
|
23
|
-
"Polish
|
|
23
|
+
"Polish zlotych" => "PLN",
|
|
24
24
|
"Pound sterling" => "GBP",
|
|
25
25
|
"Singapore dollar" => "SGD",
|
|
26
26
|
"Swedish krona" => "SEK",
|
data/lib/paypkg/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: paypkg
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael J. Welch, Ph.D.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-07-
|
|
11
|
+
date: 2014-07-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: This gem uses Net::HTTP to communicate with the PayPal servers. It has
|
|
14
14
|
calls for the most common PayPal functions to simplify using PayPal in a Ruby application.
|