btcruby 1.7 → 1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ffee95a66b5f287235a52944ff6f92e3335b22df
4
- data.tar.gz: 550a1d62ecea9b95a15294f3b65477566c9baa90
3
+ metadata.gz: f785a9e235850590ca1688db05adbbbbf204c2c2
4
+ data.tar.gz: 5093e390e415b7aeb0eb6da3d10a5ce9966a35dc
5
5
  SHA512:
6
- metadata.gz: 517e12449e58e4866826c6f28230f854bc26b04e788f9d7d3bd864dd15aeb60ccc948da70a4c2d69bfdeef84bd1475f5ac5d78aee599ea67ba52674a30703cb0
7
- data.tar.gz: e175176b5a85c1eb40e17134179bf29acc04b2077228c26089b308321d17f94e29960a4f66f0c216e124c108173e40f353125b2e596cef0117687f82098b31bb
6
+ metadata.gz: 183bc3de82ffa84c589b947a3c58cd35365200ad2b4dfe952382eefa2bcf24f00d34b9bf88157e0ad9c9b801dda29305bab94cbf82e756c0a7bd4bb6dbdb6a81
7
+ data.tar.gz: 16077e25972dd1b7d77a5b0e5c435fe4d9a3f1a4b36f4d8f9dfd6b86216f03a006093e06bf173151bb35fbd308354e91f0d3300151a89e8835f828eaa7775c3d
data/README.md CHANGED
@@ -42,7 +42,7 @@ Please see [BTCRuby Reference](documentation/index.md) for API documentation and
42
42
  * We do not pollute standard classes with our methods. To use utility extensions like `String#to_hex` you should explicitly `require 'btcruby/extensions'`.
43
43
  * We use OpenSSL `BIGNUM` implementation where compatibility is critical (instead of the built-in Ruby Bignum).
44
44
  * We enforces canonical and determinstic ECDSA signatures for maximum compatibility and security using native OpenSSL functions.
45
- * We treat endianness explicitly. Even though most systems are little-endian, it never hurts to show where indianness is important.
45
+ * We treat endianness explicitly. Even though most systems are little-endian, it never hurts to show where endianness is important.
46
46
 
47
47
  The goal is to provide a complete Bitcoin toolkit in Ruby.
48
48
 
@@ -2,10 +2,16 @@
2
2
  BTCRuby Release Notes
3
3
  =====================
4
4
 
5
+ 1.8 (May 14, 2018)
6
+ -------------------------
7
+
8
+ * Use OpenSSL 1.0 over OpenSSL 1.1 for compatiblity with Ruby 2.3.
9
+ * Added support for debugging with `pry-byebug`.
10
+
5
11
  1.7 (September 28, 2017)
6
12
  -------------------------
7
13
 
8
- * Various bugfixes
14
+ * Various bug fixes
9
15
  * WIP on API for the versioned scripts
10
16
 
11
17
  1.6 (January 15, 2015)
@@ -10,7 +10,7 @@ module BTC
10
10
  if FFI::Platform.windows?
11
11
  ffi_lib 'libeay32', 'ssleay32'
12
12
  else
13
- ffi_lib 'ssl'
13
+ ffi_lib ['libssl.so.1.0.0', 'ssl']
14
14
  end
15
15
 
16
16
  NID_secp256k1 = 714
@@ -1,3 +1,3 @@
1
1
  module BTC
2
- VERSION = "1.7".freeze
2
+ VERSION = "1.8".freeze
3
3
  end
@@ -1,5 +1,6 @@
1
1
  require 'minitest/spec'
2
2
  require 'minitest/autorun'
3
+ require 'pry-byebug'
3
4
 
4
5
  require_relative '../lib/btcruby'
5
6
  require_relative '../lib/btcruby/extensions'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: btcruby
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.7'
4
+ version: '1.8'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oleg Andreev
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-09-28 00:00:00.000000000 Z
12
+ date: 2018-05-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ffi
@@ -189,7 +189,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
189
189
  version: '0'
190
190
  requirements: []
191
191
  rubyforge_project: btcruby
192
- rubygems_version: 2.4.5
192
+ rubygems_version: 2.5.2
193
193
  signing_key:
194
194
  specification_version: 4
195
195
  summary: Rich library for building awesome Bitcoin apps.