google_drive_dotenv 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/lib/google_drive_dotenv/cli.rb +2 -1
- data/lib/google_drive_dotenv/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7b1ee0720f8723d076edb9d4b93397a12a9b58956d735a57d00bcbe114ccd19
|
4
|
+
data.tar.gz: e36d1a69b0283a3b627d4b466c68cafbfcb187eeb4e47bdfc1b0c7729ef7d3fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e6e4e5ec346ca5de8a912ec310c093e6277156defd063076363956eb7c377a2877c35bafc66f61b8d7a0321f38135b02057fa7b00f52265bdf116801d4a5b37
|
7
|
+
data.tar.gz: ed38c7d5f52396ba4deb5c8b019cbc0666de08c528e416770c5a043834781dada47ae08fad9cee6f152ebe06df5f65e1681fb860cd4f249f58d0b38e0d665973
|
data/README.md
CHANGED
@@ -5,8 +5,9 @@ module GoogleDriveDotenv
|
|
5
5
|
class CLI < Thor
|
6
6
|
desc "export [key]", "Export Spreadsheet to env file"
|
7
7
|
option "output", aliases: "o", type: :string, default: ".env"
|
8
|
+
option "config", aliases: "c", type: :string, default: "~/google_config.json"
|
8
9
|
def export(key)
|
9
|
-
config_path = File.expand_path(
|
10
|
+
config_path = File.expand_path(options['config'])
|
10
11
|
|
11
12
|
unless File.exist?(config_path)
|
12
13
|
raise "Please put #{config_path}"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google_drive_dotenv
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- adorechic
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-05-
|
11
|
+
date: 2020-05-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|