google-oauth-cli 0.1.5 → 1.0.0

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: 272c26166c448a718a3c830e265d33f767f545ce941caf440d63136ffa760fdc
4
- data.tar.gz: 2c4321c2f58f3b9440bafcbee0d79a0132a727a8399971210abea5656cee971b
3
+ metadata.gz: bffecd24e1ea120d71d977463a0c5d565d6593c42fdf309a487e116247f2b875
4
+ data.tar.gz: b2a135fc1b77aef5e02e98be0f134eea03a53e6e7d17ded4cde361133aec0f17
5
5
  SHA512:
6
- metadata.gz: ecb086d38bdfdc1768f4345db82e01f370ffe6e2b0123f9c1eba8cff19787d3d5cb7e0ee2acad1b5afc0071defbe59529a679b114e8903d5e9b2a93b6e652934
7
- data.tar.gz: 86e8a6b0d61166e23418f8730c3a0d97e9e2a7e2d81107398ab449f82b6a23262b2f3820efc746290154999f06e1667522af15476671b2c416b750d50da36342
6
+ metadata.gz: 98f4f410ba41b741ca929a568b387f8f071f8e7f458908df029b70539ebc784bdc041271f088944b69cd7ea6b7ee5d949a7b730ba91f6f772d9145a57842f799
7
+ data.tar.gz: '080c4c42513f5afe05c6dcdc3523062bc1b012c9c09144e53bf3401bcca0651f5aeeab6ef72dea14f319497176b91b11e89fe454e60b31c2ddae45ea37d09423'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- google-oauth-cli (0.1.5)
4
+ google-oauth-cli (1.0.0)
5
5
  googleauth (~> 1.5)
6
6
  launchy (~> 2.5)
7
7
 
data/README.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # google-oauth-cli
2
2
 
3
- google-oauth-cli is a RubyGems library that allows you to perform OAuth authentication with Google from the command-line interface (CLI).
3
+ [![gem version](https://badge.fury.io/rb/google-oauth-cli.svg)](https://badge.fury.io/rb/google-oauth-cli)
4
+ ![test](https://github.com/fujikky/google-oauth-cli/actions/workflows/test.yml/badge.svg?branch=main)
5
+
6
+ google-oauth-cli is a RubyGems library that allows you to perform OAuth authentication with Google from the CLI.
4
7
 
5
8
  ## Features
6
9
 
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
20
20
  spec.metadata["rubygems_mfa_required"] = "true"
21
21
  spec.metadata["homepage_uri"] = spec.homepage
22
22
  spec.metadata["source_code_uri"] = "https://github.com/fujikky/google-oauth-cli"
23
- spec.metadata["changelog_uri"] = "https://github.com/fujikky/google-oauth-cli/tree/main/CHANGELOG"
23
+ spec.metadata["changelog_uri"] = "https://github.com/fujikky/google-oauth-cli/releases"
24
24
 
25
25
  # Specify which files should be added to the gem when it is released.
26
26
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class GoogleOAuthCli
4
- VERSION = "0.1.5"
4
+ VERSION = "1.0.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-oauth-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yusuke Fujiki
@@ -49,7 +49,6 @@ extra_rdoc_files: []
49
49
  files:
50
50
  - ".rspec"
51
51
  - ".rubocop.yml"
52
- - CHANGELOG.md
53
52
  - Gemfile
54
53
  - Gemfile.lock
55
54
  - LICENSE.txt
@@ -67,7 +66,7 @@ metadata:
67
66
  rubygems_mfa_required: 'true'
68
67
  homepage_uri: https://github.com/fujikky/google-oauth-cli
69
68
  source_code_uri: https://github.com/fujikky/google-oauth-cli
70
- changelog_uri: https://github.com/fujikky/google-oauth-cli/tree/main/CHANGELOG
69
+ changelog_uri: https://github.com/fujikky/google-oauth-cli/releases
71
70
  post_install_message:
72
71
  rdoc_options: []
73
72
  require_paths:
data/CHANGELOG.md DELETED
@@ -1,5 +0,0 @@
1
- ## [Unreleased]
2
-
3
- ## [0.1.0] - 2023-04-06
4
-
5
- - Initial release