sixword 0.3.5 → 0.4.0

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
- SHA1:
3
- metadata.gz: 7cfd547e4e87c6fcc78c1400077dc59dd4122d8c
4
- data.tar.gz: 495533f0f1e6b3235ac314c5450f4e58edb01288
2
+ SHA256:
3
+ metadata.gz: b74ea6c562414ef7a07f742098179f75bccb9807cd5e75161d5f8cb2a04ee780
4
+ data.tar.gz: 9e5842fc333709e4469d518d5fcffd90987a60fff2c070892923e69dcff19c93
5
5
  SHA512:
6
- metadata.gz: 22efaac565c893e67c73a44c97ca391c23eb4164bcefe686314453af220f26782e233d32ead10ac3cdd066e2cb88923a277cf396e6c34f7273e2306eacb2caf3
7
- data.tar.gz: 32241db8faa21de8af1836fd0d1bd6b8acba0fca3d4d9cc4ab83bcbb45f654f3a12a58fee6327bbf76ccdc532f3ad9365803575c937696690ff01db95a52c432
6
+ metadata.gz: 8b238947058e4b05daadb950f3c67f72c7ace5982d97b7e7ec68ad5047ec93ccf3b82af3b0cd9956296e04b1f625a6c0d755db6f3443612ba947a5cf68a16a9d
7
+ data.tar.gz: 05d8e291207ad2fcc499584a7647de32ef7f9c4a41a2d9d6b35c0a8629de7eb552e880e938a3990fa4ea2a52f8b22b618372b1bc05c2981104027da028d0eb27
@@ -0,0 +1,18 @@
1
+ name: tests
2
+ on: [push, pull_request]
3
+ jobs:
4
+ run-tests:
5
+ strategy:
6
+ fail-fast: false
7
+ matrix:
8
+ os: [ubuntu-latest] #, macos-latest
9
+ # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
10
+ ruby: [2.6, 2.7, '3.0', head, jruby, jruby-head]
11
+ runs-on: ${{ matrix.os }}
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: ruby/setup-ruby@v1
15
+ with:
16
+ ruby-version: ${{ matrix.ruby }}
17
+ bundler-cache: true
18
+ - run: bundle exec rake test
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Sixword
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/sixword.svg)](https://rubygems.org/gems/sixword)
4
- [![Build status](https://travis-ci.org/ab/sixword.svg)](https://travis-ci.org/ab/sixword)
4
+ [![Build status](https://github.com/ab/sixword/actions/workflows/tests.yml/badge.svg)](https://github.com/ab/sixword/actions/workflows/tests.yml)
5
5
  [![Code Climate](https://codeclimate.com/github/ab/sixword.svg)](https://codeclimate.com/github/ab/sixword)
6
6
  [![Inline Docs](http://inch-ci.org/github/ab/sixword.svg?branch=master)](http://www.rubydoc.info/github/ab/sixword/master)
7
7
 
@@ -1,4 +1,4 @@
1
1
  module Sixword
2
2
  # version string
3
- VERSION = '0.3.5'.freeze
3
+ VERSION = '0.4.0'.freeze
4
4
  end
data/sixword.gemspec CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
7
7
  spec.name = 'sixword'
8
8
  spec.version = Sixword::VERSION
9
9
  spec.authors = ['Andy Brody']
10
- spec.email = ['abrody@abrody.com']
10
+ spec.email = ['git@abrody.com']
11
11
  spec.summary = 'Implementation of RFC 2289 compatible 6-word encoding'
12
12
  spec.description = <<-EOM
13
13
  Sixword implements the 6-word binary encoding created for S/Key (tm) and
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
27
27
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
28
28
  spec.require_paths = ['lib']
29
29
 
30
- spec.add_development_dependency 'bundler', '~> 1.3'
30
+ spec.add_development_dependency 'bundler', '~> 2.2'
31
31
  spec.add_development_dependency 'pry'
32
32
  spec.add_development_dependency 'rake'
33
33
  spec.add_development_dependency 'rspec', '~> 3.0'
data/spec/cli/cli_spec.rb CHANGED
@@ -1,3 +1,5 @@
1
+ require 'set'
2
+
1
3
  RSpec.describe Sixword::CLI do
2
4
 
3
5
  TestWarnings = Set.new
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sixword
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Brody
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-28 00:00:00.000000000 Z
11
+ date: 2021-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.3'
19
+ version: '2.2'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.3'
26
+ version: '2.2'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: pry
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -104,17 +104,17 @@ description: |2
104
104
 
105
105
  See also: Bubble Babble, PGP Word List, Diceware, Base64, Base32
106
106
  email:
107
- - abrody@abrody.com
107
+ - git@abrody.com
108
108
  executables:
109
109
  - sixword
110
110
  extensions: []
111
111
  extra_rdoc_files: []
112
112
  files:
113
+ - ".github/workflows/tests.yml"
113
114
  - ".gitignore"
114
115
  - ".rspec"
115
116
  - ".rubocop-disables.yml"
116
117
  - ".rubocop.yml"
117
- - ".travis.yml"
118
118
  - CHANGELOG.md
119
119
  - Gemfile
120
120
  - LICENSE.txt
@@ -153,8 +153,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
153
153
  - !ruby/object:Gem::Version
154
154
  version: '0'
155
155
  requirements: []
156
- rubyforge_project:
157
- rubygems_version: 2.6.12
156
+ rubygems_version: 3.0.3.1
158
157
  signing_key:
159
158
  specification_version: 4
160
159
  summary: Implementation of RFC 2289 compatible 6-word encoding
data/.travis.yml DELETED
@@ -1,25 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - "2.0.0"
4
- - "2.1" # latest 2.1.x
5
- - "2.2" # latest 2.2.x
6
- - "2.3.0"
7
- - "2.4.0"
8
- - "jruby-9.1.5.0"
9
- - "jruby-head"
10
- script:
11
- bundle exec rake test
12
- sudo: false
13
-
14
- before_install:
15
- # get latest rubygems due to weird bugs
16
- - gem update --system
17
- # bundler installation needed for jruby-head
18
- # https://github.com/travis-ci/travis-ci/issues/5861
19
- - gem install bundler
20
- - unset _JAVA_OPTIONS
21
-
22
- env:
23
- # avoid jruby unknown property jruby.cext.enabled
24
- # https://github.com/travis-ci/travis-ci/issues/6471
25
- - JRUBY_OPTS=''