pws-otp 0.9.0 → 0.9.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
- SHA1:
3
- metadata.gz: 88a3c92413f95df3d2991139060e76ebe729d6a6
4
- data.tar.gz: '0889b8355c7ddb700995b0ddfb9778d188b0cb7e'
2
+ SHA256:
3
+ metadata.gz: 21963f10b5a1f46d9f0289567a487516c52ea1e29a3de06ebd8377914ebfd38c
4
+ data.tar.gz: 875f7cab7c5c4eae915e514942992c505182a883fee59c350a393cebcc3decd6
5
5
  SHA512:
6
- metadata.gz: 5745beff84abf4e3a900284a07869a3bac1535321ec1a599dcb2004eef1916c8185a6b9cdfb60939e025aabcdcc49698771b0651cdcb92f05ce16b257eca8ff8
7
- data.tar.gz: 53860bcbfd006d3ae0ee73f99f8cc687c601b406b26a880a776a7f0b4ece9cce2c5ab5bf97eea99167baac159f76fbcd718d51b1dc6d6ab6491a1ac9f7992a6a
6
+ metadata.gz: 6738dc7c784f4c1c40f219c8453e51df7d7a24bf989cd29337f53d051e8cea0d67c7a9d903ab60c64737a20f603757452d04f1a87dc852fd3042afec386b16fe
7
+ data.tar.gz: 6abedeccff270b16b2c2fad91d87dceac782d5206875e5494f3c5f92684ba0e370f544eb9c4c0b9cc9e5ae7214234e887329ef40c00f78c44632b0e52dea1f99
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 0.9.2
4
+
5
+ * Relax Ruby version requirement to allow Ruby 4.0
6
+ * Bump rotp gem to 6.3
7
+
8
+ ### 0.9.1
9
+
10
+ * Relax Ruby version requirement to allow Ruby 3.0
11
+ * Bump rotp gem to 6.2
12
+
3
13
  ### 0.9.0
4
14
 
5
15
  * Initial experimental release
data/Gemfile.lock CHANGED
@@ -1,33 +1,45 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pws-otp (0.9.0)
4
+ pws-otp (0.9.2)
5
5
  pws (~> 1.0)
6
6
  rationalist (~> 2.0)
7
- rotp (~> 3.3)
7
+ rotp (~> 6.3)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- clipboard (1.1.1)
13
- minitest (5.10.1)
14
- paint (2.0.0)
12
+ clipboard (1.4.1)
13
+ minitest (5.25.2)
14
+ paint (2.3.0)
15
15
  pbkdf2-ruby (0.2.1)
16
- pws (1.0.7)
17
- clipboard (~> 1.1.1)
16
+ pws (1.0.8)
17
+ clipboard (~> 1.3)
18
18
  paint (>= 0.8.7)
19
19
  pbkdf2-ruby
20
- rake (12.0.0)
21
- rationalist (2.0.0)
22
- rotp (3.3.0)
20
+ rake (13.2.1)
21
+ rationalist (2.0.1)
22
+ rotp (6.3.0)
23
23
 
24
24
  PLATFORMS
25
25
  ruby
26
+ x86_64-linux
26
27
 
27
28
  DEPENDENCIES
28
29
  minitest
29
30
  pws-otp!
30
31
  rake
31
32
 
33
+ CHECKSUMS
34
+ clipboard (1.4.1)
35
+ minitest (5.25.2)
36
+ paint (2.3.0)
37
+ pbkdf2-ruby (0.2.1)
38
+ pws (1.0.8)
39
+ pws-otp (0.9.2)
40
+ rake (13.2.1)
41
+ rationalist (2.0.1)
42
+ rotp (6.3.0)
43
+
32
44
  BUNDLED WITH
33
- 1.14.6
45
+ 4.0.3
data/MIT-LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2017 Jan Lelis, https://janlelis.com
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # pws-otp [![[version]](https://badge.fury.io/rb/pws-otp.svg)](http://badge.fury.io/rb/pws-otp) [![[travis]](https://travis-ci.org/janlelis/pws-otp.svg)](https://travis-ci.org/janlelis/pws-otp)
1
+ # pws-otp [![[version]](https://badge.fury.io/rb/pws-otp.svg)](http://badge.fury.io/rb/pws-otp) [![[ci]](https://github.com/janlelis/pws-otp/workflows/Test/badge.svg)](https://github.com/janlelis/pws-otp/actions?query=workflow%3ATest)
2
2
 
3
3
  Experimental OTP support for [pws](https://github.com/janlelis/pws) via [rotp](https://github.com/mdp/rotp).
4
4
 
@@ -19,4 +19,4 @@ $ pws-otp time [entry]
19
19
 
20
20
  ## MIT License
21
21
 
22
- Copyright (C) 2017 Jan Lelis <http://janlelis.com>. Released under the MIT license.
22
+ Copyright (C) 2017 Jan Lelis <https://janlelis.com>. Released under the MIT license.
data/Rakefile CHANGED
@@ -32,7 +32,11 @@ end
32
32
 
33
33
  desc "#{gemspec.name} | Spec"
34
34
  task :spec do
35
- sh "for file in spec/*_spec.rb; do ruby $file; done"
35
+ if RbConfig::CONFIG['host_os'] =~ /mswin|mingw/
36
+ sh "for %f in (spec/\*.rb) do ruby spec/%f"
37
+ else
38
+ sh "for file in spec/*.rb; do ruby $file; done"
39
+ end
36
40
  end
37
41
  task default: :spec
38
42
 
@@ -1,6 +1,8 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class PWS
2
4
  module Otp
3
- VERSION = "0.9.0".freeze
5
+ VERSION = "0.9.2"
4
6
  end
5
7
  end
6
8
 
data/pws-otp.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.summary = "OTP support for PWS"
9
9
  gem.description = "Experimental OTP support for PWS"
10
10
  gem.authors = ["Jan Lelis"]
11
- gem.email = ["mail@janlelis.de"]
11
+ gem.email = ["hi@ruby.consulting"]
12
12
  gem.homepage = "https://github.com/janlelis/pws-otp"
13
13
  gem.license = "MIT"
14
14
 
@@ -18,8 +18,8 @@ Gem::Specification.new do |gem|
18
18
  gem.require_paths = ["lib"]
19
19
 
20
20
  gem.add_dependency "pws", "~> 1.0"
21
- gem.add_dependency "rotp", "~> 3.3"
21
+ gem.add_dependency "rotp", "~> 6.3"
22
22
  gem.add_dependency "rationalist", "~> 2.0"
23
23
 
24
- gem.required_ruby_version = "~> 2.1"
24
+ gem.required_ruby_version = ">= 2.1", "< 5.0"
25
25
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pws-otp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-26 00:00:00.000000000 Z
11
+ date: 2025-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pws
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '3.3'
33
+ version: '6.3'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '3.3'
40
+ version: '6.3'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rationalist
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -54,14 +54,13 @@ dependencies:
54
54
  version: '2.0'
55
55
  description: Experimental OTP support for PWS
56
56
  email:
57
- - mail@janlelis.de
57
+ - hi@ruby.consulting
58
58
  executables:
59
59
  - pws-otp
60
60
  extensions: []
61
61
  extra_rdoc_files: []
62
62
  files:
63
63
  - ".gitignore"
64
- - ".travis.yml"
65
64
  - CHANGELOG.md
66
65
  - CODE_OF_CONDUCT.md
67
66
  - Gemfile
@@ -78,24 +77,26 @@ homepage: https://github.com/janlelis/pws-otp
78
77
  licenses:
79
78
  - MIT
80
79
  metadata: {}
81
- post_install_message:
80
+ post_install_message:
82
81
  rdoc_options: []
83
82
  require_paths:
84
83
  - lib
85
84
  required_ruby_version: !ruby/object:Gem::Requirement
86
85
  requirements:
87
- - - "~>"
86
+ - - ">="
88
87
  - !ruby/object:Gem::Version
89
88
  version: '2.1'
89
+ - - "<"
90
+ - !ruby/object:Gem::Version
91
+ version: '5.0'
90
92
  required_rubygems_version: !ruby/object:Gem::Requirement
91
93
  requirements:
92
94
  - - ">="
93
95
  - !ruby/object:Gem::Version
94
96
  version: '0'
95
97
  requirements: []
96
- rubyforge_project:
97
- rubygems_version: 2.6.11
98
- signing_key:
98
+ rubygems_version: 3.5.21
99
+ signing_key:
99
100
  specification_version: 4
100
101
  summary: OTP support for PWS
101
102
  test_files:
data/.travis.yml DELETED
@@ -1,22 +0,0 @@
1
- sudo: false
2
- language: ruby
3
-
4
- rvm:
5
- - ruby-head
6
- - 2.4.1
7
- - 2.3.3
8
- - 2.2
9
- - 2.1
10
- - 2.0
11
- - jruby-head
12
- - jruby-9.1.8.0
13
-
14
- cache:
15
- - bundler
16
-
17
- matrix:
18
- allow_failures:
19
- - rvm: jruby-head
20
- - rvm: ruby-head
21
- - rvm: 2.0
22
- # fast_finish: true