ed25519 1.2.0-jruby → 1.2.1-jruby
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 +4 -4
 - data/.travis.yml +5 -3
 - data/CHANGES.md +7 -0
 - data/Gemfile +1 -1
 - data/README.md +8 -1
 - data/ed25519.gemspec +1 -1
 - data/lib/ed25519/version.rb +1 -1
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: be322ef33bd1f8b3815e6911e435a83d28424f6f
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 2ddddea9f1c0f99bf431ee4a7f5ad2060447e15d
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: e970259bf3526ef0b05dc18ec27ece6801de93e534c79b6e2547a5436936cc45ef2b49ff18f736367ef772bf8736a9acab52aa2d53aaf5aeee62378a05fabdde
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 5f6e13b75d4e671d38909c0c8b2061b3063d22f58566a4c4249d245e30ae9ea1cc43770a821bb75874143e9a7bba3d177b74b39b108ac9594ef04cadd99144cd
         
     | 
    
        data/.travis.yml
    CHANGED
    
    
    
        data/CHANGES.md
    CHANGED
    
    | 
         @@ -1,3 +1,10 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # [1.2.1] (2017-12-15)
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            [1.2.1]: https://github.com/cryptosphere/x25519/compare/v1.2.0...v1.2.1
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            * [#14](https://github.com/cryptosphere/ed25519/pull/14)
         
     | 
| 
      
 6 
     | 
    
         
            +
              Support MRI 2.0+
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
       1 
8 
     | 
    
         
             
            # [1.2.0] (2017-12-15)
         
     | 
| 
       2 
9 
     | 
    
         | 
| 
       3 
10 
     | 
    
         
             
            [1.2.0]: https://github.com/cryptosphere/x25519/compare/v1.1.0...v1.2.0
         
     | 
    
        data/Gemfile
    CHANGED
    
    
    
        data/README.md
    CHANGED
    
    | 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            [build-image]: https://travis-ci.org/cryptosphere/ed25519.svg?branch=master
         
     | 
| 
       6 
6 
     | 
    
         
             
            [build-link]: https://travis-ci.org/cryptosphere/ed25519
         
     | 
| 
       7 
7 
     | 
    
         
             
            [docs-image]: https://img.shields.io/badge/yard-docs-blue.svg
         
     | 
| 
       8 
     | 
    
         
            -
            [docs-link]: http://www.rubydoc.info/gems/ed25519/1.2. 
     | 
| 
      
 8 
     | 
    
         
            +
            [docs-link]: http://www.rubydoc.info/gems/ed25519/1.2.1
         
     | 
| 
       9 
9 
     | 
    
         
             
            [license-image]: https://img.shields.io/badge/license-MIT-blue.svg
         
     | 
| 
       10 
10 
     | 
    
         
             
            [license-link]: https://github.com/cryptosphere/ed25519/blob/master/LICENSE
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -58,6 +58,13 @@ You can read more on [Dan Bernstein's Ed25519 site](http://ed25519.cr.yp.to/). 
     | 
|
| 
       58 
58 
     | 
    
         | 
| 
       59 
59 
     | 
    
         
             
            [Schnorr signature]: https://en.wikipedia.org/wiki/Schnorr_signature
         
     | 
| 
       60 
60 
     | 
    
         | 
| 
      
 61 
     | 
    
         
            +
            ## Requirements
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
            **ed25519.rb** is tested on and supported by the following platforms:
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
            * MRI 2.0+
         
     | 
| 
      
 66 
     | 
    
         
            +
            * JRuby 9000+
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
       61 
68 
     | 
    
         
             
            ## Installation
         
     | 
| 
       62 
69 
     | 
    
         | 
| 
       63 
70 
     | 
    
         
             
            Add this line to your application's Gemfile:
         
     | 
    
        data/ed25519.gemspec
    CHANGED
    
    
    
        data/lib/ed25519/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: ed25519
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1.2. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.2.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: jruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Tony Arcieri
         
     | 
| 
         @@ -152,7 +152,7 @@ required_ruby_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       152 
152 
     | 
    
         
             
              requirements:
         
     | 
| 
       153 
153 
     | 
    
         
             
              - - ">="
         
     | 
| 
       154 
154 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       155 
     | 
    
         
            -
                  version: 2. 
     | 
| 
      
 155 
     | 
    
         
            +
                  version: 2.0.0
         
     | 
| 
       156 
156 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
       157 
157 
     | 
    
         
             
              requirements:
         
     | 
| 
       158 
158 
     | 
    
         
             
              - - ">="
         
     |