noise-ruby 0.6.1 → 0.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f181a91afb5e9f6f0536ee4301c3b84b076cc73c3270d943186a2bb13903d93
4
- data.tar.gz: dc57f6d9ff751739b38edb17b585ce691b8a169762e6e019a85528252b344d85
3
+ metadata.gz: 03ed469e476c3155826ad1a388ebb58cae4a6bcb4b457ea8da03571c0fba6a30
4
+ data.tar.gz: a01a6c2efef49055045adfbe41c64c5e29cfc7b94e92cc3cf3cb8556db05af73
5
5
  SHA512:
6
- metadata.gz: 03fa1edf4511fb28e18b22b51aab27c7c94b542b9ee59894d8026505f42a198329a96b90e9d57ed9d13fc25ab3da44d6daf851ff329548c264646d9ed0ed2e10
7
- data.tar.gz: eb1b9cf632528afef3c0cd5912aef01aef555f82b833fba2b82224ff64fba1d3e785fa07439cfc337a0df4da2e422df01316a9df2f1b36e9ccccdd69225e8d4b
6
+ metadata.gz: 0fe3099c983f926edae292a4057135ea7127e55c716a75597c015fb7539745352174379d32a284ebc6a6119f4689a9ffd4b623770836263fe144a971e91e19c2
7
+ data.tar.gz: dccd9f79daa84e53fb88fe690d806bae2fea26f3558ec193f35237c6125d52025dcd97d771d4b0e9f6448d93956db9ca6c0cd59221f6cf6a7ebf0ce3ea9b129a
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.5.0
1
+ 2.5.1
data/README.md CHANGED
@@ -29,19 +29,6 @@ This library requires [libsecp256k1](https://github.com/bitcoin-core/secp256k1).
29
29
  $ make
30
30
  $ sudo make install
31
31
 
32
- In addition, libsodium is required.
33
-
34
- $ brew install libsodium
35
-
36
- or
37
-
38
- $ git clone https://github.com/jedisct1/libsodium
39
- $ cd libsodium
40
- $ ./autogen.sh
41
- $ ./configure
42
- $ make
43
- $ sudo make install
44
-
45
32
  Add this line to your application's Gemfile:
46
33
 
47
34
  ```
data/lib/noise.rb CHANGED
@@ -3,7 +3,7 @@
3
3
  require 'noise/version'
4
4
 
5
5
  require 'ecdsa'
6
- require 'rbnacl'
6
+ require 'rbnacl/libsodium'
7
7
  require 'ruby_hmac'
8
8
  require 'secp256k1'
9
9
  require 'securerandom'
data/lib/noise/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Noise
4
- VERSION = '0.6.1'
4
+ VERSION = '0.6.2'
5
5
  end
data/noise.gemspec CHANGED
@@ -27,6 +27,6 @@ Gem::Specification.new do |spec|
27
27
 
28
28
  spec.add_runtime_dependency 'secp256k1-ruby'
29
29
  spec.add_runtime_dependency 'ecdsa'
30
- spec.add_runtime_dependency 'rbnacl'
30
+ spec.add_runtime_dependency 'rbnacl-libsodium'
31
31
  spec.add_runtime_dependency 'ruby-hmac'
32
32
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: noise-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hajime Yamaguchi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-05-31 00:00:00.000000000 Z
11
+ date: 2018-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -81,7 +81,7 @@ dependencies:
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
- name: rbnacl
84
+ name: rbnacl-libsodium
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - ">="
@@ -181,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
181
181
  version: '0'
182
182
  requirements: []
183
183
  rubyforge_project:
184
- rubygems_version: 2.7.3
184
+ rubygems_version: 2.7.6
185
185
  signing_key:
186
186
  specification_version: 4
187
187
  summary: A Ruby implementation of the Noise Protocol framework