google-oauth-cli 0.1.1 → 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: 5a04b58395eeb4563cd278f0e195775f06474340620d1bea548d0da4de72ddc7
4
- data.tar.gz: ebb231140cb5cf762f691a0747a57156aa052115c0bf1584408b8043a20bb7e2
3
+ metadata.gz: bffecd24e1ea120d71d977463a0c5d565d6593c42fdf309a487e116247f2b875
4
+ data.tar.gz: b2a135fc1b77aef5e02e98be0f134eea03a53e6e7d17ded4cde361133aec0f17
5
5
  SHA512:
6
- metadata.gz: dbba06cd56dd7b048d216b861cc00cea62521c39f7c5cded50799ea764ce3ecd7ea701ee442c84a281a89ffc918af6e0f91be0178d3b9e8eed8f2886dd784e7b
7
- data.tar.gz: 03a153672b71cfde33bc0007a29a42979be360f8431b64ce3c835239e1e060fd9ea32f99fd5442d72a0ba63a5e22cd367f0541bf36853fb6ec65497b4d51423f
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.1)
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.1"
4
+ VERSION = "1.0.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-oauth-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yusuke Fujiki
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-04-09 00:00:00.000000000 Z
11
+ date: 2023-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: googleauth
@@ -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