oauth-tty 1.0.0 → 1.0.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 +4 -4
- data/CHANGELOG.md +7 -2
- data/lib/oauth/cli.rb +0 -1
- data/lib/oauth/tty/version.rb +1 -1
- data/lib/oauth/tty.rb +0 -10
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dcc7765f4354e03f3fd41b09347728bfe5fca79683d3c8c7379bba38a07eb4c4
|
|
4
|
+
data.tar.gz: 54796d589108809e84feee2c9cfe5b23d42b8439396462aae954f0080b2383a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9718b73f4efb400ec9849832f7de0db79a8ecb30ae9e7d5a46f4dcf63af3170b59e3add7bf9123400e54bd4bd5d17faafe23ccab0a6cdf3f93ab97eb5b340026
|
|
7
|
+
data.tar.gz: cf68697e0857296c0553d614686142fe0df3d60cae37258aacaabc1d48339d62db45c8038fc46cd46521205bc46c201e42c527ba9fb537d752f42a04c305d352
|
data/CHANGELOG.md
CHANGED
|
@@ -13,9 +13,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
13
13
|
|
|
14
14
|
### Removed
|
|
15
15
|
|
|
16
|
-
## [1.0.
|
|
16
|
+
## [1.0.1] - 2022-08-26
|
|
17
|
+
### Fixed
|
|
18
|
+
- Circular reference while loading
|
|
19
|
+
|
|
20
|
+
## [1.0.0] - 2022-08-26
|
|
17
21
|
### Added
|
|
18
22
|
- Initial release
|
|
19
23
|
|
|
20
|
-
[Unreleased]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.
|
|
24
|
+
[Unreleased]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.1...main
|
|
25
|
+
[1.0.1]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.1
|
|
21
26
|
[1.0.0]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.0
|
data/lib/oauth/cli.rb
CHANGED
data/lib/oauth/tty/version.rb
CHANGED
data/lib/oauth/tty.rb
CHANGED
|
@@ -21,16 +21,6 @@ require_relative "tty/commands/authorize_command"
|
|
|
21
21
|
require_relative "tty/commands/sign_command"
|
|
22
22
|
require_relative "tty/commands/version_command"
|
|
23
23
|
|
|
24
|
-
# A gem was released in 2011 which was a rudimentary commands for the oauth gem,
|
|
25
|
-
# thus it occupies the name in RubyGems.org.
|
|
26
|
-
# This library was originally written as part of the oauth gem, in 2016, as OAuth::TTY.
|
|
27
|
-
# This gem is named oauth-tty, but intends to have backwards compatibility with oauth gem v1.0.x.
|
|
28
|
-
# Now that it is being extracted there is a name conflict.
|
|
29
|
-
#
|
|
30
|
-
# oauth-cli is a backwards compatibility loader hook for bundler
|
|
31
|
-
# TODO: Remove with April 2023 release of 2.0 release of oauth gem
|
|
32
|
-
require "oauth/cli"
|
|
33
|
-
|
|
34
24
|
module OAuth
|
|
35
25
|
# The namespace of this gem
|
|
36
26
|
module TTY
|
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.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Pinto
|
|
@@ -210,10 +210,10 @@ licenses:
|
|
|
210
210
|
- MIT
|
|
211
211
|
metadata:
|
|
212
212
|
homepage_uri: https://gitlab.com/pboling/oauth-commands
|
|
213
|
-
source_code_uri: https://gitlab.com/pboling/oauth-commands/-/tree/v1.0.
|
|
214
|
-
changelog_uri: https://gitlab.com/pboling/oauth-commands/-/blob/v1.0.
|
|
213
|
+
source_code_uri: https://gitlab.com/pboling/oauth-commands/-/tree/v1.0.1
|
|
214
|
+
changelog_uri: https://gitlab.com/pboling/oauth-commands/-/blob/v1.0.1/CHANGELOG.md
|
|
215
215
|
bug_tracker_uri: https://gitlab.com/pboling/oauth-commands/-/issues
|
|
216
|
-
documentation_uri: https://www.rubydoc.info/gems/oauth-tty/1.0.
|
|
216
|
+
documentation_uri: https://www.rubydoc.info/gems/oauth-tty/1.0.1
|
|
217
217
|
wiki_uri: https://gitlab.com/pboling/oauth-commands/-/wikis/home
|
|
218
218
|
rubygems_mfa_required: 'true'
|
|
219
219
|
post_install_message:
|