oauth-tty 1.0.6 → 1.0.8
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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +36 -1
- data/CITATION.cff +0 -0
- data/CODE_OF_CONDUCT.md +0 -0
- data/CONTRIBUTING.md +0 -0
- data/FUNDING.md +0 -0
- data/LICENSE.txt +1 -1
- data/README.md +2 -4
- data/REEK +2 -0
- data/RUBOCOP.md +0 -0
- data/SECURITY.md +3 -0
- data/lib/oauth/tty/auth_sanitizer.rb +38 -0
- data/lib/oauth/tty/cli.rb +4 -2
- data/lib/oauth/tty/command.rb +25 -1
- data/lib/oauth/tty/commands/authorize_command.rb +0 -0
- data/lib/oauth/tty/commands/query_command.rb +0 -0
- data/lib/oauth/tty/commands/sign_command.rb +0 -0
- data/lib/oauth/tty/commands/version_command.rb +0 -0
- data/lib/oauth/tty/version.rb +2 -1
- data/lib/oauth/tty.rb +2 -0
- data/sig/oauth/tty/command.rbs +15 -0
- data/sig/oauth/tty/version.rbs +1 -0
- data.tar.gz.sig +0 -0
- metadata +75 -27
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 615326d7bdb365bf9529d93296704b468611cfde8340c92328184cde418932ca
|
|
4
|
+
data.tar.gz: 261203267bcec6401ae9ad0240a2ddf42a87ad9f65a747ae73e97aa1e4b43633
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c7f5871e5803d1c399143583f8ce5cba43b43808f92128cf977f5651070548b06214db4aafce22f533ee2fd450ca8cf41fc64d3bfce10e444db96242fef9e5e
|
|
7
|
+
data.tar.gz: bf82abc2f80a966fa094b10b10ce4a4fb91d61f5d072b2b4e10516739f5ab8b9b5909d3e9976561a7a7ad09964ab859cf79200d82f20be0d3096b50305f323bc
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,37 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [1.0.8] - 2026-05-20
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.0.8][1.0.8t]
|
|
36
|
+
- COVERAGE: 100.00% -- 315/315 lines in 11 files
|
|
37
|
+
- BRANCH COVERAGE: 96.55% -- 28/29 branches in 11 files
|
|
38
|
+
- 15.79% documented
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- auth-sanitizer v0.1.3
|
|
43
|
+
|
|
44
|
+
### Fixed
|
|
45
|
+
|
|
46
|
+
- Load `auth-sanitizer` through an internal isolated loader so requiring `oauth/tty` does not add top-level `Auth` or `AuthSanitizer` constants that may collide with downstream applications.
|
|
47
|
+
|
|
48
|
+
## [1.0.7] - 2026-05-16
|
|
49
|
+
|
|
50
|
+
- TAG: [v1.0.7][1.0.7t]
|
|
51
|
+
- COVERAGE: 100.00% -- 305/305 lines in 10 files
|
|
52
|
+
- BRANCH COVERAGE: 96.55% -- 28/29 branches in 10 files
|
|
53
|
+
- 16.22% documented
|
|
54
|
+
|
|
55
|
+
### Added
|
|
56
|
+
|
|
57
|
+
- Add inspect-time secret redaction for command option state through `auth-sanitizer` integration.
|
|
58
|
+
- Traditional OAuth::TTY::VERSION constant
|
|
59
|
+
|
|
60
|
+
### Changed
|
|
61
|
+
|
|
62
|
+
- Redact the command options hash from `OAuth::TTY::Command#inspect` because it may contain credential-bearing CLI arguments.
|
|
63
|
+
|
|
33
64
|
## [1.0.6] - 2025-09-21
|
|
34
65
|
|
|
35
66
|
- TAG: [v1.0.6][1.0.6t]
|
|
@@ -124,7 +155,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
124
155
|
|
|
125
156
|
- Initial release (@pboling)
|
|
126
157
|
|
|
127
|
-
[Unreleased]: https://github.com/ruby-oauth/oauth-tty/compare/v1.0.
|
|
158
|
+
[Unreleased]: https://github.com/ruby-oauth/oauth-tty/compare/v1.0.8...HEAD
|
|
159
|
+
[1.0.8]: https://github.com/ruby-oauth/oauth-tty/compare/v1.0.7...v1.0.8
|
|
160
|
+
[1.0.8t]: https://github.com/ruby-oauth/oauth-tty/releases/tag/v1.0.8
|
|
161
|
+
[1.0.7]: https://github.com/ruby-oauth/oauth-tty/compare/v1.0.6...v1.0.7
|
|
162
|
+
[1.0.7t]: https://github.com/ruby-oauth/oauth-tty/releases/tag/v1.0.7
|
|
128
163
|
[1.0.6]: https://github.com/ruby-oauth/oauth-tty/compare/v1.0.5...v1.0.6
|
|
129
164
|
[1.0.6t]: https://github.com/ruby-oauth/oauth-tty/releases/tag/v1.0.6
|
|
130
165
|
[1.0.5]: https://gitlab.com/ruby-oauth/oauth-tty/-/compare/v1.0.4...v1.0.5
|
data/CITATION.cff
CHANGED
|
File without changes
|
data/CODE_OF_CONDUCT.md
CHANGED
|
File without changes
|
data/CONTRIBUTING.md
CHANGED
|
File without changes
|
data/FUNDING.md
CHANGED
|
File without changes
|
data/LICENSE.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2021-2022, 2025 Peter H. Boling, of Galtzo.com, and
|
|
3
|
+
Copyright (c) 2021-2022, 2025 Peter H. Boling, of Galtzo.com, and oauth-tty contributors
|
|
4
4
|
Copyright (c) 2016-2017 Thiago Pinto
|
|
5
5
|
|
|
6
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
data/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
# 🖥️ OAuth::TTY
|
|
11
11
|
|
|
12
|
-
[![Version][👽versioni]][👽version] [![GitHub tag (latest SemVer)][⛳️tag-img]][⛳️tag] [![License: MIT][📄license-img]][📄license-ref] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![
|
|
12
|
+
[![Version][👽versioni]][👽version] [![GitHub tag (latest SemVer)][⛳️tag-img]][⛳️tag] [![License: MIT][📄license-img]][📄license-ref] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![CodeCov Test Coverage][🏀codecovi]][🏀codecov] [![Coveralls Test Coverage][🏀coveralls-img]][🏀coveralls] [![QLTY Test Coverage][🏀qlty-covi]][🏀qlty-cov] [![QLTY Maintainability][🏀qlty-mnti]][🏀qlty-mnt] [![CI Heads][🚎3-hd-wfi]][🚎3-hd-wf] [![CI Runtime Dependencies @ HEAD][🚎12-crh-wfi]][🚎12-crh-wf] [![CI Current][🚎11-c-wfi]][🚎11-c-wf] [![CI Truffle Ruby][🚎9-t-wfi]][🚎9-t-wf] [![CI JRuby][🚎10-j-wfi]][🚎10-j-wf] [![Deps Locked][🚎13-🔒️-wfi]][🚎13-🔒️-wf] [![Deps Unlocked][🚎14-🔓️-wfi]][🚎14-🔓️-wf] [![CI Supported][🚎6-s-wfi]][🚎6-s-wf] [![CI Legacy][🚎4-lg-wfi]][🚎4-lg-wf] [![CI Unsupported][🚎7-us-wfi]][🚎7-us-wf] [![CI Ancient][🚎1-an-wfi]][🚎1-an-wf] [![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf] [![CI Style][🚎5-st-wfi]][🚎5-st-wf] [![CodeQL][🖐codeQL-img]][🖐codeQL] [![Apache SkyWalking Eyes License Compatibility Check][🚎15-🪪-wfi]][🚎15-🪪-wf]
|
|
13
13
|
|
|
14
14
|
`if ci_badges.map(&:color).detect { it != "green"}` ☝️ [let me know][🖼️galtzo-discord], as I may have missed the [discord notification][🖼️galtzo-discord].
|
|
15
15
|
|
|
@@ -572,8 +572,6 @@ Thanks for RTFM. ☺️
|
|
|
572
572
|
[📜gh-wiki-img]: https://img.shields.io/badge/wiki-examples-943CD2.svg?style=for-the-badge&logo=github&logoColor=white
|
|
573
573
|
[👽dl-rank]: https://rubygems.org/gems/oauth-tty
|
|
574
574
|
[👽dl-ranki]: https://img.shields.io/gem/rd/oauth-tty.svg
|
|
575
|
-
[👽oss-help]: https://www.codetriage.com/ruby-oauth/oauth-tty
|
|
576
|
-
[👽oss-helpi]: https://www.codetriage.com/ruby-oauth/oauth-tty/badges/users.svg
|
|
577
575
|
[👽version]: https://rubygems.org/gems/oauth-tty
|
|
578
576
|
[👽versioni]: https://img.shields.io/gem/v/oauth-tty.svg
|
|
579
577
|
[🏀qlty-mnt]: https://qlty.sh/gh/ruby-oauth/projects/oauth-tty
|
|
@@ -664,7 +662,7 @@ Thanks for RTFM. ☺️
|
|
|
664
662
|
[📌gitmoji]:https://gitmoji.dev
|
|
665
663
|
[📌gitmoji-img]:https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
|
666
664
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
667
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.
|
|
665
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.315-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
668
666
|
[🔐security]: SECURITY.md
|
|
669
667
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
670
668
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
data/RUBOCOP.md
CHANGED
|
File without changes
|
data/SECURITY.md
CHANGED
|
@@ -12,6 +12,8 @@ To report a security vulnerability, please use the
|
|
|
12
12
|
[Tidelift security contact](https://tidelift.com/security).
|
|
13
13
|
Tidelift will coordinate the fix and disclosure.
|
|
14
14
|
|
|
15
|
+
More detailed explanation of the process is in [IRP.md][IRP].
|
|
16
|
+
|
|
15
17
|
## Additional Support
|
|
16
18
|
|
|
17
19
|
If you are interested in support for versions older than the latest release,
|
|
@@ -19,3 +21,4 @@ please consider sponsoring the project / maintainer @ https://liberapay.com/pbol
|
|
|
19
21
|
or find other sponsorship links in the [README].
|
|
20
22
|
|
|
21
23
|
[README]: README.md
|
|
24
|
+
[IRP]: IRP.md
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module OAuth
|
|
4
|
+
module TTY
|
|
5
|
+
AUTH_SANITIZER = begin
|
|
6
|
+
auth_sanitizer_requirement = Gem::Requirement.new("~> 0.1", ">= 0.1.3")
|
|
7
|
+
auth_sanitizer_spec = Gem.loaded_specs["auth-sanitizer"]
|
|
8
|
+
unless auth_sanitizer_spec && auth_sanitizer_requirement.satisfied_by?(auth_sanitizer_spec.version)
|
|
9
|
+
# :nocov:
|
|
10
|
+
auth_sanitizer_spec = Gem::Specification.find_by_name("auth-sanitizer", auth_sanitizer_requirement)
|
|
11
|
+
# :nocov:
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
auth_sanitizer_loader_path = File.join(
|
|
15
|
+
auth_sanitizer_spec.full_gem_path,
|
|
16
|
+
"lib/auth_sanitizer/loader.rb",
|
|
17
|
+
)
|
|
18
|
+
unless File.file?(auth_sanitizer_loader_path)
|
|
19
|
+
# :nocov:
|
|
20
|
+
raise LoadError, "oauth-tty requires auth-sanitizer #{auth_sanitizer_requirement}; " \
|
|
21
|
+
"loader not found at #{auth_sanitizer_loader_path}"
|
|
22
|
+
# :nocov:
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
auth_sanitizer_loader_namespace = Module.new
|
|
26
|
+
auth_sanitizer_loader_namespace.module_eval(
|
|
27
|
+
File.read(auth_sanitizer_loader_path),
|
|
28
|
+
auth_sanitizer_loader_path,
|
|
29
|
+
1,
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
auth_sanitizer_loader_namespace
|
|
33
|
+
.const_get(:AuthSanitizer)
|
|
34
|
+
.const_get(:Loader)
|
|
35
|
+
.load_isolated
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
data/lib/oauth/tty/cli.rb
CHANGED
data/lib/oauth/tty/command.rb
CHANGED
|
@@ -2,7 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
module OAuth
|
|
4
4
|
module TTY
|
|
5
|
+
# Base class for oauth-tty commands.
|
|
6
|
+
#
|
|
7
|
+
# Includes {OAuth::TTY::AUTH_SANITIZER::FilteredAttributes} so inspect output redacts
|
|
8
|
+
# the accumulated command options hash, which may contain consumer or token
|
|
9
|
+
# secrets read from CLI flags or option files.
|
|
5
10
|
class Command
|
|
11
|
+
include OAuth::TTY::AUTH_SANITIZER::FilteredAttributes
|
|
12
|
+
|
|
13
|
+
# Redact parser-related state from inspect output because it can include
|
|
14
|
+
# credential-bearing CLI arguments and parser internals that retain them.
|
|
15
|
+
filtered_attributes :options, :option_parser
|
|
16
|
+
|
|
6
17
|
def initialize(stdout, stdin, stderr, arguments)
|
|
7
18
|
@stdout = stdout
|
|
8
19
|
@stdin = stdin
|
|
@@ -12,6 +23,17 @@ module OAuth
|
|
|
12
23
|
option_parser.parse!(arguments)
|
|
13
24
|
end
|
|
14
25
|
|
|
26
|
+
def inspect
|
|
27
|
+
format(
|
|
28
|
+
"#<%<klass>s:0x%<object_id>x @stdout=%<stdout>s, @stdin=%<stdin>s, @stderr=%<stderr>s, @options=[FILTERED], @option_parser=[FILTERED]>",
|
|
29
|
+
klass: self.class,
|
|
30
|
+
object_id: object_id,
|
|
31
|
+
stdout: @stdout.inspect,
|
|
32
|
+
stdin: @stdin.inspect,
|
|
33
|
+
stderr: @stderr.inspect,
|
|
34
|
+
)
|
|
35
|
+
end
|
|
36
|
+
|
|
15
37
|
def run
|
|
16
38
|
missing = required_options - options.keys
|
|
17
39
|
if missing.empty?
|
|
@@ -26,10 +48,12 @@ module OAuth
|
|
|
26
48
|
[]
|
|
27
49
|
end
|
|
28
50
|
|
|
29
|
-
|
|
51
|
+
private
|
|
30
52
|
|
|
31
53
|
attr_reader :options
|
|
32
54
|
|
|
55
|
+
protected
|
|
56
|
+
|
|
33
57
|
def show_missing(array)
|
|
34
58
|
array = array.map { |s| "--#{s}" }.join(" ")
|
|
35
59
|
OAuth::TTY::CLI.puts_red("Options missing to OAuth CLI: #{array}")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/oauth/tty/version.rb
CHANGED
data/lib/oauth/tty.rb
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
# stdlib
|
|
4
|
+
require "cgi"
|
|
4
5
|
require "optparse"
|
|
5
6
|
|
|
6
7
|
# external gems
|
|
@@ -13,6 +14,7 @@ require "oauth"
|
|
|
13
14
|
|
|
14
15
|
# this gem's version
|
|
15
16
|
require_relative "tty/version"
|
|
17
|
+
require_relative "tty/auth_sanitizer"
|
|
16
18
|
|
|
17
19
|
# Configure version before loading the rest of the library
|
|
18
20
|
OAuth::TTY::Version.class_eval do
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
module OAuth
|
|
2
|
+
module TTY
|
|
3
|
+
class Command
|
|
4
|
+
include OAuth::TTY::AUTH_SANITIZER::FilteredAttributes
|
|
5
|
+
|
|
6
|
+
def initialize: (untyped stdout, untyped stdin, untyped stderr, untyped arguments) -> void
|
|
7
|
+
def run: () -> untyped
|
|
8
|
+
def required_options: () -> Array[untyped]
|
|
9
|
+
|
|
10
|
+
private
|
|
11
|
+
|
|
12
|
+
attr_reader options: untyped
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
data/sig/oauth/tty/version.rbs
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oauth-tty
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thiago Pinto
|
|
@@ -38,6 +38,40 @@ cert_chain:
|
|
|
38
38
|
-----END CERTIFICATE-----
|
|
39
39
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
40
40
|
dependencies:
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: cgi
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ">="
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: auth-sanitizer
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0.1'
|
|
62
|
+
- - ">="
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
version: 0.1.3
|
|
65
|
+
type: :runtime
|
|
66
|
+
prerelease: false
|
|
67
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
68
|
+
requirements:
|
|
69
|
+
- - "~>"
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: '0.1'
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: 0.1.3
|
|
41
75
|
- !ruby/object:Gem::Dependency
|
|
42
76
|
name: version_gem
|
|
43
77
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -64,28 +98,28 @@ dependencies:
|
|
|
64
98
|
requirements:
|
|
65
99
|
- - "~>"
|
|
66
100
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: '
|
|
101
|
+
version: '2.0'
|
|
68
102
|
type: :development
|
|
69
103
|
prerelease: false
|
|
70
104
|
version_requirements: !ruby/object:Gem::Requirement
|
|
71
105
|
requirements:
|
|
72
106
|
- - "~>"
|
|
73
107
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: '
|
|
108
|
+
version: '2.0'
|
|
75
109
|
- !ruby/object:Gem::Dependency
|
|
76
110
|
name: bundler-audit
|
|
77
111
|
requirement: !ruby/object:Gem::Requirement
|
|
78
112
|
requirements:
|
|
79
113
|
- - "~>"
|
|
80
114
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: 0.9.
|
|
115
|
+
version: 0.9.3
|
|
82
116
|
type: :development
|
|
83
117
|
prerelease: false
|
|
84
118
|
version_requirements: !ruby/object:Gem::Requirement
|
|
85
119
|
requirements:
|
|
86
120
|
- - "~>"
|
|
87
121
|
- !ruby/object:Gem::Version
|
|
88
|
-
version: 0.9.
|
|
122
|
+
version: 0.9.3
|
|
89
123
|
- !ruby/object:Gem::Dependency
|
|
90
124
|
name: rake
|
|
91
125
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -127,6 +161,9 @@ dependencies:
|
|
|
127
161
|
- - "~>"
|
|
128
162
|
- !ruby/object:Gem::Version
|
|
129
163
|
version: '3.0'
|
|
164
|
+
- - ">="
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: 3.0.6
|
|
130
167
|
type: :development
|
|
131
168
|
prerelease: false
|
|
132
169
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -134,6 +171,9 @@ dependencies:
|
|
|
134
171
|
- - "~>"
|
|
135
172
|
- !ruby/object:Gem::Version
|
|
136
173
|
version: '3.0'
|
|
174
|
+
- - ">="
|
|
175
|
+
- !ruby/object:Gem::Version
|
|
176
|
+
version: 3.0.6
|
|
137
177
|
- !ruby/object:Gem::Dependency
|
|
138
178
|
name: kettle-test
|
|
139
179
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -141,6 +181,9 @@ dependencies:
|
|
|
141
181
|
- - "~>"
|
|
142
182
|
- !ruby/object:Gem::Version
|
|
143
183
|
version: '1.0'
|
|
184
|
+
- - ">="
|
|
185
|
+
- !ruby/object:Gem::Version
|
|
186
|
+
version: 1.0.10
|
|
144
187
|
type: :development
|
|
145
188
|
prerelease: false
|
|
146
189
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -148,20 +191,23 @@ dependencies:
|
|
|
148
191
|
- - "~>"
|
|
149
192
|
- !ruby/object:Gem::Version
|
|
150
193
|
version: '1.0'
|
|
194
|
+
- - ">="
|
|
195
|
+
- !ruby/object:Gem::Version
|
|
196
|
+
version: 1.0.10
|
|
151
197
|
- !ruby/object:Gem::Dependency
|
|
152
198
|
name: mocha
|
|
153
199
|
requirement: !ruby/object:Gem::Requirement
|
|
154
200
|
requirements:
|
|
155
|
-
- - "
|
|
201
|
+
- - "~>"
|
|
156
202
|
- !ruby/object:Gem::Version
|
|
157
|
-
version: '0'
|
|
203
|
+
version: '3.0'
|
|
158
204
|
type: :development
|
|
159
205
|
prerelease: false
|
|
160
206
|
version_requirements: !ruby/object:Gem::Requirement
|
|
161
207
|
requirements:
|
|
162
|
-
- - "
|
|
208
|
+
- - "~>"
|
|
163
209
|
- !ruby/object:Gem::Version
|
|
164
|
-
version: '0'
|
|
210
|
+
version: '3.0'
|
|
165
211
|
- !ruby/object:Gem::Dependency
|
|
166
212
|
name: rack
|
|
167
213
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -180,50 +226,50 @@ dependencies:
|
|
|
180
226
|
name: rack-test
|
|
181
227
|
requirement: !ruby/object:Gem::Requirement
|
|
182
228
|
requirements:
|
|
183
|
-
- - "
|
|
229
|
+
- - "~>"
|
|
184
230
|
- !ruby/object:Gem::Version
|
|
185
|
-
version: '0'
|
|
231
|
+
version: '2.0'
|
|
186
232
|
type: :development
|
|
187
233
|
prerelease: false
|
|
188
234
|
version_requirements: !ruby/object:Gem::Requirement
|
|
189
235
|
requirements:
|
|
190
|
-
- - "
|
|
236
|
+
- - "~>"
|
|
191
237
|
- !ruby/object:Gem::Version
|
|
192
|
-
version: '0'
|
|
238
|
+
version: '2.0'
|
|
193
239
|
- !ruby/object:Gem::Dependency
|
|
194
240
|
name: rest-client
|
|
195
241
|
requirement: !ruby/object:Gem::Requirement
|
|
196
242
|
requirements:
|
|
197
|
-
- - "
|
|
243
|
+
- - "~>"
|
|
198
244
|
- !ruby/object:Gem::Version
|
|
199
|
-
version: '
|
|
245
|
+
version: '2.1'
|
|
200
246
|
type: :development
|
|
201
247
|
prerelease: false
|
|
202
248
|
version_requirements: !ruby/object:Gem::Requirement
|
|
203
249
|
requirements:
|
|
204
|
-
- - "
|
|
250
|
+
- - "~>"
|
|
205
251
|
- !ruby/object:Gem::Version
|
|
206
|
-
version: '
|
|
252
|
+
version: '2.1'
|
|
207
253
|
- !ruby/object:Gem::Dependency
|
|
208
254
|
name: rspec-pending_for
|
|
209
255
|
requirement: !ruby/object:Gem::Requirement
|
|
210
256
|
requirements:
|
|
211
257
|
- - "~>"
|
|
212
258
|
- !ruby/object:Gem::Version
|
|
213
|
-
version: '0.
|
|
259
|
+
version: '0.1'
|
|
214
260
|
- - ">="
|
|
215
261
|
- !ruby/object:Gem::Version
|
|
216
|
-
version: 0.
|
|
262
|
+
version: 0.1.20
|
|
217
263
|
type: :development
|
|
218
264
|
prerelease: false
|
|
219
265
|
version_requirements: !ruby/object:Gem::Requirement
|
|
220
266
|
requirements:
|
|
221
267
|
- - "~>"
|
|
222
268
|
- !ruby/object:Gem::Version
|
|
223
|
-
version: '0.
|
|
269
|
+
version: '0.1'
|
|
224
270
|
- - ">="
|
|
225
271
|
- !ruby/object:Gem::Version
|
|
226
|
-
version: 0.
|
|
272
|
+
version: 0.1.20
|
|
227
273
|
- !ruby/object:Gem::Dependency
|
|
228
274
|
name: typhoeus
|
|
229
275
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -261,7 +307,7 @@ dependencies:
|
|
|
261
307
|
version: '1.0'
|
|
262
308
|
- - ">="
|
|
263
309
|
- !ruby/object:Gem::Version
|
|
264
|
-
version: 1.0.
|
|
310
|
+
version: 1.0.3
|
|
265
311
|
type: :development
|
|
266
312
|
prerelease: false
|
|
267
313
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -271,7 +317,7 @@ dependencies:
|
|
|
271
317
|
version: '1.0'
|
|
272
318
|
- - ">="
|
|
273
319
|
- !ruby/object:Gem::Version
|
|
274
|
-
version: 1.0.
|
|
320
|
+
version: 1.0.3
|
|
275
321
|
- !ruby/object:Gem::Dependency
|
|
276
322
|
name: gitmoji-regex
|
|
277
323
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -372,6 +418,7 @@ files:
|
|
|
372
418
|
- exe/oauth
|
|
373
419
|
- lib/oauth/cli.rb
|
|
374
420
|
- lib/oauth/tty.rb
|
|
421
|
+
- lib/oauth/tty/auth_sanitizer.rb
|
|
375
422
|
- lib/oauth/tty/cli.rb
|
|
376
423
|
- lib/oauth/tty/command.rb
|
|
377
424
|
- lib/oauth/tty/commands/authorize_command.rb
|
|
@@ -381,16 +428,17 @@ files:
|
|
|
381
428
|
- lib/oauth/tty/commands/version_command.rb
|
|
382
429
|
- lib/oauth/tty/version.rb
|
|
383
430
|
- lib/oauth_tty.rb
|
|
431
|
+
- sig/oauth/tty/command.rbs
|
|
384
432
|
- sig/oauth/tty/version.rbs
|
|
385
433
|
homepage: https://github.com/ruby-oauth/oauth-tty
|
|
386
434
|
licenses:
|
|
387
435
|
- MIT
|
|
388
436
|
metadata:
|
|
389
437
|
homepage_uri: https://oauth-tty.galtzo.com/
|
|
390
|
-
source_code_uri: https://github.com/ruby-oauth/oauth-tty/tree/v1.0.
|
|
391
|
-
changelog_uri: https://github.com/ruby-oauth/oauth-tty/blob/v1.0.
|
|
438
|
+
source_code_uri: https://github.com/ruby-oauth/oauth-tty/tree/v1.0.8
|
|
439
|
+
changelog_uri: https://github.com/ruby-oauth/oauth-tty/blob/v1.0.8/CHANGELOG.md
|
|
392
440
|
bug_tracker_uri: https://github.com/ruby-oauth/oauth-tty/issues
|
|
393
|
-
documentation_uri: https://www.rubydoc.info/gems/oauth-tty/1.0.
|
|
441
|
+
documentation_uri: https://www.rubydoc.info/gems/oauth-tty/1.0.8
|
|
394
442
|
funding_uri: https://github.com/sponsors/pboling
|
|
395
443
|
wiki_uri: https://github.com/ruby-oauth/oauth-tty/wiki
|
|
396
444
|
news_uri: https://www.railsbling.com/tags/oauth-tty
|
|
@@ -420,7 +468,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
420
468
|
- !ruby/object:Gem::Version
|
|
421
469
|
version: '0'
|
|
422
470
|
requirements: []
|
|
423
|
-
rubygems_version:
|
|
471
|
+
rubygems_version: 4.0.11
|
|
424
472
|
specification_version: 4
|
|
425
473
|
summary: "\U0001F5A5️ OAuth 1.0 / 1.0a TTY CLI"
|
|
426
474
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|