block_io 1.0.4 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a4070e3d1b972162366367a130966c3eb5c22e51
4
- data.tar.gz: ba5d436f001c72a584ecb63e74e66edfc2817896
3
+ metadata.gz: 0940811390b9b507fed0e47b2a04769206f6942c
4
+ data.tar.gz: ec335dcad5f5a0b8cb70524ac3a619e5e70094c5
5
5
  SHA512:
6
- metadata.gz: 63988cad8c218661843facfe58065e1f3eb0ec260ddea3cc4b07295012e8a3a2924e34a0b8e2662464895f20021dcdcf89d688281845be99944f3a7846bfa38c
7
- data.tar.gz: e4434f2ccc1158b618dd19ea00df54a1da2e3da73f8ab8f0e4e7c660341b2c2fb3f07e366ba3173f4b3cc76843a3151c981b0cb2644d4ed98e8ef57f11430897
6
+ metadata.gz: 27f8d7f35c2d73438f0faf47e1d57b8d866dfeefde4a9080c1618eb0dd623b205caed1e345782dae052ad2039f470c0ec1a7476bfea832e67429e9916f3f8749
7
+ data.tar.gz: e0b5606867ac6a6618732c3ca2c05fb48822a68ee00de2728a2bf283d6514b963d53609a23ee43809adba88b5384c9ba62b26cc5bd740f0937ed6ccf2734b231
data/README.md CHANGED
@@ -18,7 +18,7 @@ Or install it yourself as:
18
18
 
19
19
  ## Changelog
20
20
 
21
- *11/03/14*: Reduce dependence on OpenSSL. PBKDF2 function is now Ruby-based. Should work well with Heroku's libraries.
21
+ *11/03/14*: Reduce dependence on OpenSSL. PBKDF2 function is now Ruby-based. Should work well with Heroku's libraries.
22
22
  *10/18/14*: Now using deterministic signatures (RFC6979), and BIP62 to hinder transaction malleability.
23
23
 
24
24
 
@@ -122,9 +122,10 @@ module BlockIo
122
122
 
123
123
  private
124
124
 
125
- def self.get_params(args)
125
+ def self.get_params(args = {})
126
126
  # construct the parameter string
127
127
  params = ""
128
+ args = {} if args.nil?
128
129
 
129
130
  args.each do |k,v|
130
131
  params += '&' if params.length > 0
@@ -1,3 +1,3 @@
1
1
  module BlockIo
2
- VERSION = "1.0.4"
2
+ VERSION = "1.0.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: block_io
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Atif Nazir