oauth-tty 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 26b58736636326cbfc8e5a56982c1d9945f7268d48daff63b8a41bbd4a847fec
4
- data.tar.gz: 3c5695fa35a827e5973f17756aa64620555164afceeb39d9a1797259645f1e56
3
+ metadata.gz: 4be523783b36e07c47962148d50a2aad44ff1cac7c951a5b8dc6c68d4e9209f4
4
+ data.tar.gz: db35338757887d00250046193faf6585c73de1cdd9d5af77c39f763dbc9a3e40
5
5
  SHA512:
6
- metadata.gz: ab347abb5ef865c83bd90b06d5789f9638faca042f2dcdba002d3c3fcb83726e5b4adef79fc20e36a6a68c566840d7d4dda9c15ba0cd623b149de1c49d7df720
7
- data.tar.gz: fb1d94d23cdf6933ba7bd5717a245e56203aac5200b8d125169996c0f230188554a60d5e5f3aaf11e1e7b0eac739da917c3c5b6398130fa38a949bba8e074690
6
+ metadata.gz: f2e63752db2ec16c923d624b7527cefcca0abc0bd4e9e0ec32b00ab754771cc420989c65cdda0459d6abe6d16400e4d251399b56dee6e3dc73aa45af601e7c95
7
+ data.tar.gz: b281adc1572563cff8ec42e4d16445b898ef1f080dabbf566d78f81507fa9e67023f5abdccc2aba5826a7505c702439f0c83979687bf8c6601567caa56386915
checksums.yaml.gz.sig ADDED
Binary file
data/CHANGELOG.md CHANGED
@@ -6,30 +6,45 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
  ### Added
9
-
10
9
  ### Changed
11
-
12
10
  ### Fixed
13
-
14
11
  ### Removed
15
12
 
13
+ ## [1.0.4] - 2022-09-19
14
+ ### Added
15
+ - Certificate for signing gem releases (@pboling)
16
+ - Gemspec metadata (@pboling)
17
+ - funding_uri
18
+ - mailing_list_uri
19
+ - Installation and usage documentation (@pboling)
20
+ - Checksums for released gems (@pboling)
21
+ ### Changed
22
+ - Gem releases are now cryptographically signed (@pboling)
23
+
16
24
  ## [1.0.3] - 2022-09-06
17
25
  ### Fixed
18
- - Author name - Thaigo Pinto
26
+ - Author name - Thaigo Pinto (@pboling)
19
27
 
20
28
  ## [1.0.2] - 2022-08-26
21
29
  ### Fixed
22
- - URLs in Gemspec
30
+ - URLs in Gemspec (@pboling)
23
31
 
24
32
  ## [1.0.1] - 2022-08-26
25
33
  ### Fixed
26
- - Circular reference while loading
34
+ - Circular reference while loading (@pboling)
27
35
 
28
36
  ## [1.0.0] - 2022-08-26
29
37
  ### Added
30
- - Initial release
31
-
32
- [Unreleased]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.2...main
33
- [1.0.2]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.2
34
- [1.0.1]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.1
38
+ - Initial release (@pboling)
39
+
40
+ [Unreleased]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.4...main
41
+ [1.0.4]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.3...v1.0.4
42
+ [1.0.4t]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.4
43
+ [1.0.3]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.2...v1.0.3
44
+ [1.0.3t]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.3
45
+ [1.0.2]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.1...v1.0.2
46
+ [1.0.2t]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.2
47
+ [1.0.1]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.0...v1.0.1
48
+ [1.0.1t]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.1
35
49
  [1.0.0]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.0
50
+ [1.0.0t]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.0
data/README.md CHANGED
@@ -15,9 +15,18 @@ If bundler is not being used to manage dependencies, install the gem by executin
15
15
 
16
16
  $ gem install oauth-tty
17
17
 
18
+ NOTE: You might see a warning like:
19
+ ```
20
+ oauth-tty's executable "oauth" conflicts with oauth
21
+ Overwrite the executable? [yN] y
22
+ ```
23
+ The `oauth` executable from this gem *is* the extracted and repackaged executable from the `oauth` gem, so you *should* overwrite it.
24
+
18
25
  ## Usage
19
26
 
20
- For now, please see the tests.
27
+ In a shell run `oauth` to start the console.
28
+
29
+ For now, please see the tests for other usage.
21
30
 
22
31
  ## Development
23
32
 
@@ -3,7 +3,7 @@
3
3
  module OAuth
4
4
  module TTY
5
5
  module Version
6
- VERSION = "1.0.3"
6
+ VERSION = "1.0.4"
7
7
  end
8
8
  end
9
9
  end
data.tar.gz.sig ADDED
Binary file
metadata CHANGED
@@ -1,15 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oauth-tty
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thiago Pinto
8
8
  - Peter Boling
9
9
  autorequire:
10
10
  bindir: exe
11
- cert_chain: []
12
- date: 2022-09-06 00:00:00.000000000 Z
11
+ cert_chain:
12
+ - |
13
+ -----BEGIN CERTIFICATE-----
14
+ MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
15
+ ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
16
+ A2NvbTAeFw0yMjA5MTgyMzEyMzBaFw0yMzA5MTgyMzEyMzBaMEMxFTATBgNVBAMM
17
+ DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
18
+ LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEA2Dn1GM3W
19
+ 8K2/rvN1zz+06bQMcxD16ZKTihVwi7Pb1v3T98rM4Omnxohm3s+CwpDWGeiB9pj6
20
+ 0I/CTce0e4e3s8GKJSOrg93veImPSoH2PfsMsRsuB8wtqyiOCjLbF5o6S29x87r0
21
+ LA5EawH+Lh4xqrkkPjdffsmLk7TaCig/vlmNvnzxXKBdey/X/aEJZXzzBiWRfVdh
22
+ O1fmMbVKyieGv9HK7+pLotIoT08bjDv8NP6V7zZslwQRqW27bQc6cqC2LGIbTYO3
23
+ 3jt1kQxfMWmhOictS6SzG9VtKSrXf0L4Neq0Gh7CLBZBvJFWJYZPfb92YNITDbd8
24
+ emPOAQlXXNMN4mMXsEqtEhCPZRMnmwO+fOk/cC4AyglKi9lnQugCQoFV1XDMZST/
25
+ CYbzdQyadOdPDInTntG6V+Uw51d2QGXZ6PDDfrx9+toc/3sl5h68rCUGgE6Q3jPz
26
+ srinqmBsxv2vTpmd4FjmiAtEnwH5/ooLpQYL8UdAjEoeysxS3AwIh+5dAgMBAAGj
27
+ fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQWU6D156a2cle+
28
+ lb5RBfvVXlxTwjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
29
+ A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
30
+ ggGBAJ4SqhPlgUiLYIrphGXIaxXScHyvx4kixuvdrwhI4VoQV2qXvO7R6ZjOXVwX
31
+ f/z84BWPiTZ8lzThPbt1UV/BGwkvLw9I4RjOdzvUz3J42j9Ly6q63isall07bo3F
32
+ QWe/OBvIMBF1IbjC3q5vKPg4rq8+TkNRJNoE86U2gfR+PkW3jYYs9uiy0GloHDCP
33
+ k5xgaj0vSL0Uy5mTOPdk3K6a/sUGZyYniWK05zdhIi956ynhfGaFO988FFdVw5Jq
34
+ LHtXfIpAU8F7ES04syZSslxOluw7VlcSKyRdVIr737J92ZTduppB4PRGSKRgBsWV
35
+ hXTahRE72Kyw53Q7FAuzF3v102WxAAQ7BuMjW+MyCUT75fwPm3W4ELPL8HYkNGE7
36
+ 2oA5CPghFitRnvYS3GNrDG+9bNiRMEskeaBYwZ9UgReBQIwGYVj7LZk3UhiAsn44
37
+ gwGrEXGQGDZ0NIgBcmvMOqlXjkGQwQvugKycJ024z89+fz2332vdZIKTrSxJrXGk
38
+ 4/bR9A==
39
+ -----END CERTIFICATE-----
40
+ date: 2022-09-19 00:00:00.000000000 Z
13
41
  dependencies:
14
42
  - !ruby/object:Gem::Dependency
15
43
  name: version_gem
@@ -18,6 +46,9 @@ dependencies:
18
46
  - - "~>"
19
47
  - !ruby/object:Gem::Version
20
48
  version: '1.1'
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: 1.1.1
21
52
  type: :runtime
22
53
  prerelease: false
23
54
  version_requirements: !ruby/object:Gem::Requirement
@@ -25,6 +56,9 @@ dependencies:
25
56
  - - "~>"
26
57
  - !ruby/object:Gem::Version
27
58
  version: '1.1'
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: 1.1.1
28
62
  - !ruby/object:Gem::Dependency
29
63
  name: em-http-request
30
64
  requirement: !ruby/object:Gem::Requirement
@@ -182,6 +216,7 @@ dependencies:
182
216
  description: OAuth 1.0 TTY Command Line Interface
183
217
  email:
184
218
  - peter.boling@gmail.com
219
+ - oauth-ruby@googlegroups.com
185
220
  executables:
186
221
  - oauth
187
222
  extensions: []
@@ -210,11 +245,13 @@ licenses:
210
245
  - MIT
211
246
  metadata:
212
247
  homepage_uri: https://gitlab.com/oauth-xx/oauth-tty
213
- source_code_uri: https://gitlab.com/oauth-xx/oauth-tty/-/tree/v1.0.3
214
- changelog_uri: https://gitlab.com/oauth-xx/oauth-tty/-/blob/v1.0.3/CHANGELOG.md
248
+ source_code_uri: https://gitlab.com/oauth-xx/oauth-tty/-/tree/v1.0.4
249
+ changelog_uri: https://gitlab.com/oauth-xx/oauth-tty/-/blob/v1.0.4/CHANGELOG.md
215
250
  bug_tracker_uri: https://gitlab.com/oauth-xx/oauth-tty/-/issues
216
- documentation_uri: https://www.rubydoc.info/gems/oauth-tty/1.0.3
251
+ documentation_uri: https://www.rubydoc.info/gems/oauth-tty/1.0.4
217
252
  wiki_uri: https://gitlab.com/oauth-xx/oauth-tty/-/wikis/home
253
+ funding_uri: https://liberapay.com/pboling
254
+ mailing_list_uri: https://groups.google.com/g/oauth-ruby
218
255
  rubygems_mfa_required: 'true'
219
256
  post_install_message:
220
257
  rdoc_options: []
metadata.gz.sig ADDED
Binary file