ed25519 1.2.3 → 1.2.4

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: 6173c3a29df4b71fea845289dc18dc9626ef7c45f361dd6599fc3a0d380f1641
4
- data.tar.gz: 7c502be6a6c84b17b6755ba61da9fbf380d13905d89d407a470f9129194cff5c
3
+ metadata.gz: 03b774ee1581012fdd91985f6515cd679dd4d9a13d3334291ca7067a14d06a1c
4
+ data.tar.gz: a6864f791e97462216794ab17276be5eb8739bbe625e4bfb3c4fae3b88cc667f
5
5
  SHA512:
6
- metadata.gz: c7f72a79e4872f809309740007e65e900aa8b0b2e959738d0d7a62fcfefd364a29f06f4a3ff92b41db14bb8995ca0d4b2d45f448004b63cf0a4cc865b16d6281
7
- data.tar.gz: 5499bc94c84e1a1d9507ff42db18dade50f61915aff05e0510105360e30b821d14bf96bf6426f2c5a43f7bc3134712bb4f069207ad8e2f578179960746f0b2e9
6
+ metadata.gz: 60eee44b632813721cc5c7d48b74a5ef36ac9e3c6722945d1569f5173284846809630f767d166e0419fdd7b76be60adf479b43c1486c8311c5b34defeb987d97
7
+ data.tar.gz: cad594f1b0e6abf9fafd52ed66caef1f67f830bf0561474e17e9ca658bfc923bf17d93d23fc0531bb3ce63b2b55987b7a9f5f0b4e179d1c550e5b3f5b54faae8
data/.gitignore CHANGED
@@ -11,6 +11,5 @@
11
11
  *.so
12
12
  *.bundle
13
13
  *.jar
14
-
15
- # rspec failure tracking
16
14
  .rspec_status
15
+ .rakeTasks
data/CHANGES.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.2.4] (2018-01-04)
2
+
3
+ [1.2.4]: https://github.com/crypto-rb/ed25519/compare/v1.2.3...v1.2.4
4
+
5
+ * Fix JRuby platform name
6
+ * Add license information to gemspec
7
+
1
8
  ## [1.2.3] (2017-12-31)
2
9
 
3
10
  [1.2.3]: https://github.com/crypto-rb/ed25519/compare/v1.2.2...v1.2.3
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # ed25519.rb [![Latest Version][gem-shield]][gem-link] [![Build Status][build-image]][build-link] [![Appveyor CI Status][appveyor-image]][appveyor-link] [![Yard Docs][docs-image]][docs-link] [![License: MIT][license-image]][license-link]
1
+ # ed25519.rb [![Latest Version][gem-shield]][gem-link] [![Build Status][build-image]][build-link] [![Appveyor CI Status][appveyor-image]][appveyor-link] [![Yard Docs][docs-image]][docs-link] [![License: MIT][license-image]][license-link] [![Gitter Chat][gitter-image]][gitter-link]
2
2
 
3
3
  [gem-shield]: https://badge.fury.io/rb/ed25519.svg
4
4
  [gem-link]: https://rubygems.org/gems/ed25519
@@ -10,6 +10,8 @@
10
10
  [docs-link]: http://www.rubydoc.info/gems/ed25519/1.2.3
11
11
  [license-image]: https://img.shields.io/badge/license-MIT-blue.svg
12
12
  [license-link]: https://github.com/crypto-rb/ed25519/blob/master/LICENSE
13
+ [gitter-image]: https://badges.gitter.im/badge.svg
14
+ [gitter-link]: https://gitter.im/crypto-rb/Lobby
13
15
 
14
16
  A Ruby binding to the Ed25519 elliptic curve public-key signature system
15
17
  described in [RFC 8032].
@@ -155,7 +157,7 @@ code of conduct.
155
157
 
156
158
  ## License
157
159
 
158
- Copyright (c) 2012-2017 Tony Arcieri. Distributed under the MIT License. See
160
+ Copyright (c) 2012-2018 Tony Arcieri. Distributed under the MIT License. See
159
161
  [LICENSE] for further details.
160
162
 
161
163
  [LICENSE]: https://github.com/crypto-rb/ed25519/blob/master/LICENSE
@@ -13,13 +13,14 @@ Gem::Specification.new do |spec|
13
13
  described in RFC 8032.
14
14
  DESCRIPTION
15
15
  spec.homepage = "https://github.com/crypto-rb/ed25519"
16
+ spec.license = "MIT"
16
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
18
  spec.bindir = "exe"
18
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
20
  spec.require_paths = ["lib"]
20
21
 
21
22
  if defined? JRUBY_VERSION
22
- spec.platform = "jruby"
23
+ spec.platform = "java"
23
24
  spec.files << "lib/ed25519_jruby.jar"
24
25
  else
25
26
  spec.platform = Gem::Platform::RUBY
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ed25519
4
- VERSION = "1.2.3"
4
+ VERSION = "1.2.4"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ed25519
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tony Arcieri
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-01-01 00:00:00.000000000 Z
11
+ date: 2018-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -111,7 +111,8 @@ files:
111
111
  - lib/ed25519/verify_key.rb
112
112
  - lib/ed25519/version.rb
113
113
  homepage: https://github.com/crypto-rb/ed25519
114
- licenses: []
114
+ licenses:
115
+ - MIT
115
116
  metadata: {}
116
117
  post_install_message:
117
118
  rdoc_options: []
@@ -129,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
129
130
  version: '0'
130
131
  requirements: []
131
132
  rubyforge_project:
132
- rubygems_version: 2.7.3
133
+ rubygems_version: 2.7.4
133
134
  signing_key:
134
135
  specification_version: 4
135
136
  summary: An efficient digital signature library providing the Ed25519 algorithm