pws-otp 0.9.0 → 0.9.1

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: 53e0ed5d9c704994f6931a5398d335ff3ed402731e67ed808a5b2e1b2d6febb8
4
+ data.tar.gz: 25144f188c90a438d39cba410f4cd6bcce8636a7812e1684c83978fd6caf0798
5
5
  SHA512:
6
- metadata.gz: 5745beff84abf4e3a900284a07869a3bac1535321ec1a599dcb2004eef1916c8185a6b9cdfb60939e025aabcdcc49698771b0651cdcb92f05ce16b257eca8ff8
7
- data.tar.gz: 53860bcbfd006d3ae0ee73f99f8cc687c601b406b26a880a776a7f0b4ece9cce2c5ab5bf97eea99167baac159f76fbcd718d51b1dc6d6ab6491a1ac9f7992a6a
6
+ metadata.gz: 9f01fd790697ff779ef58b1f7d18cbec0a4e6749e4650351210be5637307e6a1df660cc00fad3805725f5c3ce1ab13bdee484b8bc76a64d154528e15f259c846
7
+ data.tar.gz: ddaa0538b92b3c918c383a9aaa32d156d9e81e7fc7d1f8c90bf8424e10085782868ee493d3eb7e5771adf94498aa7ed5a4a8973ec3971392fea6ca1fbbc94f45
@@ -1,5 +1,10 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 0.9.1
4
+
5
+ * Relax Ruby version requirement to allow Ruby 3.0
6
+ * Bump rotp gem to 6.2
7
+
3
8
  ### 0.9.0
4
9
 
5
10
  * Initial experimental release
@@ -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.1"
4
6
  end
5
7
  end
6
8
 
@@ -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.2"
22
22
  gem.add_dependency "rationalist", "~> 2.0"
23
23
 
24
- gem.required_ruby_version = "~> 2.1"
24
+ gem.required_ruby_version = ">= 2.1", "< 4.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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-26 00:00:00.000000000 Z
11
+ date: 2020-12-30 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.2'
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.2'
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
@@ -84,17 +83,19 @@ 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: '4.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
+ rubygems_version: 3.2.3
98
99
  signing_key:
99
100
  specification_version: 4
100
101
  summary: OTP support for PWS
@@ -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