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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9fb5812f14a92a8a60c904bf888e20701efd84500e09b872246757702619fcd0
4
- data.tar.gz: e8d2c97c028f5aa121dcc148665971d05d4131f9167c32d703092ffd24915308
3
+ metadata.gz: dcc7765f4354e03f3fd41b09347728bfe5fca79683d3c8c7379bba38a07eb4c4
4
+ data.tar.gz: 54796d589108809e84feee2c9cfe5b23d42b8439396462aae954f0080b2383a0
5
5
  SHA512:
6
- metadata.gz: 4ed6e99d3681333289f5e97e05789c05392ce034e96d10beea77b8a0dbd7c7d5a31649aec74ea4c41ca08546bc8d9c7ce99a6abdf7f9274bfa7465055fbd7b53
7
- data.tar.gz: d7fc8d67328d2b95233f5f2156e11ef24dc0c2c9fce709d40d3169ee346075e2007c9e7da9c5c2fe07a9e97f3989c77affedc136a5044c6b32347c71bbc67b7f
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.0] - 2022-08-23
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.0...main
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
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "oauth/tty"
4
- require "oauth/tty/cli"
5
4
 
6
5
  # Backwards compatibility hack.
7
6
  # TODO: Remove with April 2023 release of 2.0 release of oauth gem
@@ -3,7 +3,7 @@
3
3
  module OAuth
4
4
  module TTY
5
5
  module Version
6
- VERSION = "1.0.0"
6
+ VERSION = "1.0.1"
7
7
  end
8
8
  end
9
9
  end
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.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.0
214
- changelog_uri: https://gitlab.com/pboling/oauth-commands/-/blob/v1.0.0/CHANGELOG.md
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.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: