oauth-tty 1.0.9 → 1.0.10
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 +22 -3
- data/README.md +5 -0
- data/lib/oauth/tty/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -18
- 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: 6ceb33cbf9ad43a33ee1ffb429fbcea7013b3ab6212142687174a1c71bbb5d3c
|
|
4
|
+
data.tar.gz: e8a424649e6594f4e2f49dee756697e902d3c772a07776d9476663330453e750
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64ab362360414139ff79e5f4bfd5d4c7fe564e78a18a9998064d5927a2af367cc5a5bd24523cb12dd2a969ef85a60bed6137fc450b2a0ef41cd3604b833eface
|
|
7
|
+
data.tar.gz: b5a64dff39f1db011202a538c9b1617da7859f5ae8f39299fa6ee87007ad88a48c272d18f4729c1dac5e782a60159503438f7eb14f4d12153a83c542757a33a1
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -28,12 +28,29 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
28
28
|
|
|
29
29
|
### Fixed
|
|
30
30
|
|
|
31
|
+
### Security
|
|
32
|
+
|
|
33
|
+
## [1.0.10] - 2026-06-15
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.0.10][1.0.10t]
|
|
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
|
+
### Removed
|
|
41
|
+
|
|
42
|
+
- Removed the external `cgi` runtime dependency so Ruby 2.4 uses its bundled
|
|
43
|
+
CGI library instead of installable `cgi` gem releases that call
|
|
44
|
+
`String#delete_prefix`.
|
|
45
|
+
|
|
46
|
+
### Fixed
|
|
47
|
+
|
|
48
|
+
- Restore compatibility with Ruby 2.4 by removing the direct runtime dependency
|
|
49
|
+
on the cgi gem.
|
|
31
50
|
- Restored the Ruby 3.4 appraisal's explicit `oauth` dependency so the CI
|
|
32
51
|
matrix exercises the same runtime dependency pattern as the other Ruby
|
|
33
52
|
version appraisals.
|
|
34
53
|
|
|
35
|
-
### Security
|
|
36
|
-
|
|
37
54
|
## [1.0.9] - 2026-06-15
|
|
38
55
|
|
|
39
56
|
- TAG: [v1.0.9][1.0.9t]
|
|
@@ -182,7 +199,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
182
199
|
|
|
183
200
|
- Initial release (@pboling)
|
|
184
201
|
|
|
185
|
-
[Unreleased]: https://github.com/ruby-oauth/oauth-tty/compare/v1.0.
|
|
202
|
+
[Unreleased]: https://github.com/ruby-oauth/oauth-tty/compare/v1.0.10...HEAD
|
|
203
|
+
[1.0.10]: https://github.com/ruby-oauth/oauth-tty/compare/v1.0.9...v1.0.10
|
|
204
|
+
[1.0.10t]: https://github.com/ruby-oauth/oauth-tty/releases/tag/v1.0.10
|
|
186
205
|
[1.0.9]: https://github.com/ruby-oauth/oauth-tty/compare/v1.0.8...v1.0.9
|
|
187
206
|
[1.0.9t]: https://github.com/ruby-oauth/oauth-tty/releases/tag/v1.0.9
|
|
188
207
|
[1.0.8]: https://github.com/ruby-oauth/oauth-tty/compare/v1.0.7...v1.0.8
|
data/README.md
CHANGED
|
@@ -118,6 +118,11 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
|
118
118
|
gem install oauth-tty
|
|
119
119
|
```
|
|
120
120
|
|
|
121
|
+
`oauth-tty` uses Ruby's `CGI` library for query parameter encoding and parsing.
|
|
122
|
+
Supported Ruby versions that ship `CGI` do not need an additional dependency.
|
|
123
|
+
Applications running on Ruby versions or distributions that do not provide
|
|
124
|
+
`CGI` should add the `cgi` gem directly.
|
|
125
|
+
|
|
121
126
|
## ⚙️ Configuration
|
|
122
127
|
|
|
123
128
|
The oauth-tty gem is a thin CLI over the oauth gem. You supply your consumer credentials, token credentials (when applicable), a target URI, and optional parameters, and the tool signs requests or helps you complete an OAuth 1.0/1.0a 3-legged flow.
|
data/lib/oauth/tty/version.rb
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.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thiago Pinto
|
|
@@ -58,20 +58,6 @@ dependencies:
|
|
|
58
58
|
- - ">="
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
60
|
version: 0.2.1
|
|
61
|
-
- !ruby/object:Gem::Dependency
|
|
62
|
-
name: cgi
|
|
63
|
-
requirement: !ruby/object:Gem::Requirement
|
|
64
|
-
requirements:
|
|
65
|
-
- - ">="
|
|
66
|
-
- !ruby/object:Gem::Version
|
|
67
|
-
version: '0'
|
|
68
|
-
type: :runtime
|
|
69
|
-
prerelease: false
|
|
70
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
71
|
-
requirements:
|
|
72
|
-
- - ">="
|
|
73
|
-
- !ruby/object:Gem::Version
|
|
74
|
-
version: '0'
|
|
75
61
|
- !ruby/object:Gem::Dependency
|
|
76
62
|
name: version_gem
|
|
77
63
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -459,10 +445,10 @@ licenses:
|
|
|
459
445
|
- MIT
|
|
460
446
|
metadata:
|
|
461
447
|
homepage_uri: https://structuredmerge.org
|
|
462
|
-
source_code_uri: https://github.com/ruby-oauth/oauth-tty/tree/v1.0.
|
|
463
|
-
changelog_uri: https://github.com/ruby-oauth/oauth-tty/blob/v1.0.
|
|
448
|
+
source_code_uri: https://github.com/ruby-oauth/oauth-tty/tree/v1.0.10
|
|
449
|
+
changelog_uri: https://github.com/ruby-oauth/oauth-tty/blob/v1.0.10/CHANGELOG.md
|
|
464
450
|
bug_tracker_uri: https://github.com/ruby-oauth/oauth-tty/issues
|
|
465
|
-
documentation_uri: https://www.rubydoc.info/gems/oauth-tty/1.0.
|
|
451
|
+
documentation_uri: https://www.rubydoc.info/gems/oauth-tty/1.0.10
|
|
466
452
|
funding_uri: https://github.com/sponsors/pboling
|
|
467
453
|
wiki_uri: https://github.com/ruby-oauth/oauth-tty/wiki
|
|
468
454
|
news_uri: https://www.railsbling.com/tags/oauth-tty
|
metadata.gz.sig
CHANGED
|
Binary file
|