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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 04971f9b28415697d2b097efbd0d33fa26e1cba8
4
- data.tar.gz: f569dacfcd0f7e0fa5a869779cf689505c8ab8de
3
+ metadata.gz: df55431230a19b88c22d69db86810580ac7478e5
4
+ data.tar.gz: e6effbe3edeecfd41c1c5e7bc1402031f2407891
5
5
  SHA512:
6
- metadata.gz: 9941a82ddbdaa08ba00955680394614b5f0cb39cf29187be894aadb77d29093cd78a4dd50572f9269e27860a83f0b0c958c756527a6e8acf4a19a7714a686a0f
7
- data.tar.gz: e00e4f1c0b547d006551df380876e7b8a5a18581ec8450a7bb04719dec24aef8c29e03fb349746968db01fac4b3950fdc2bc8f00b18dd94616297e18aba33d81
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 złoty" => "PLN",
23
+ "Polish zlotych" => "PLN",
24
24
  "Pound sterling" => "GBP",
25
25
  "Singapore dollar" => "SGD",
26
26
  "Swedish krona" => "SEK",
@@ -1,4 +1,4 @@
1
1
  module Version
2
- VERSION = "0.1.5"
3
- MODIFIED = "2014-07-22"
2
+ VERSION = "0.1.6"
3
+ MODIFIED = "2014-07-27"
4
4
  end
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.5
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-22 00:00:00.000000000 Z
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.