barruun 0.1.5 → 0.1.6
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 +4 -4
- data/Gemfile.lock +1 -15
- data/README.md +15 -0
- data/barruun.gemspec +1 -2
- data/lib/barruun/version.rb +1 -1
- metadata +2 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 687ee635c9dd48bbdef5a5aa4d9e41e6b7d527c93da7f67a197c5a41f2458384
|
|
4
|
+
data.tar.gz: '068eb03f2e78b5ee3df8ad20ee3eae5e69af6f84af0fc70b9c5494e738bf5af9'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7722426c4de439a7159db04d4f30fd2035c521455e2c3b210c1ae75cddaff59c2bf21be687db230141d325e27049523eecc12cd71c205c4411e61033913399c
|
|
7
|
+
data.tar.gz: 50cdc30a34cfe43d59b9d0c38141c4d0dfd15b90e9caacfa092bbd20932b5e806528c606f622c485594bbaf84425f5a1a8ba80434b61e673a0e7ada95ba97cd7
|
data/Gemfile.lock
CHANGED
|
@@ -1,25 +1,13 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
barruun (0.1.
|
|
5
|
-
active_hash
|
|
4
|
+
barruun (0.1.6)
|
|
6
5
|
thor (~> 1.1)
|
|
7
6
|
|
|
8
7
|
GEM
|
|
9
8
|
remote: https://rubygems.org/
|
|
10
9
|
specs:
|
|
11
|
-
active_hash (3.1.0)
|
|
12
|
-
activesupport (>= 5.0.0)
|
|
13
|
-
activesupport (7.0.1)
|
|
14
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
15
|
-
i18n (>= 1.6, < 2)
|
|
16
|
-
minitest (>= 5.1)
|
|
17
|
-
tzinfo (~> 2.0)
|
|
18
|
-
concurrent-ruby (1.1.9)
|
|
19
10
|
diff-lcs (1.5.0)
|
|
20
|
-
i18n (1.8.11)
|
|
21
|
-
concurrent-ruby (~> 1.0)
|
|
22
|
-
minitest (5.15.0)
|
|
23
11
|
power_assert (1.1.7)
|
|
24
12
|
rake (13.0.6)
|
|
25
13
|
rspec (3.10.0)
|
|
@@ -39,8 +27,6 @@ GEM
|
|
|
39
27
|
rspec (>= 2.14)
|
|
40
28
|
rspec-support (3.10.3)
|
|
41
29
|
thor (1.2.1)
|
|
42
|
-
tzinfo (2.0.4)
|
|
43
|
-
concurrent-ruby (~> 1.0)
|
|
44
30
|
webrick (1.7.0)
|
|
45
31
|
yard (0.9.27)
|
|
46
32
|
webrick (~> 1.7.0)
|
data/README.md
CHANGED
|
@@ -62,6 +62,21 @@ bucket-level: 'on'
|
|
|
62
62
|
location: us-central1
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
+
### BigQuery
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
Commands:
|
|
69
|
+
barruun bigquery dataset [FILEPATH] # Create dataset
|
|
70
|
+
barruun bigquery help [COMMAND] # Describe subcommands or one specific subcommand
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
#### Dataset
|
|
74
|
+
|
|
75
|
+
```yaml
|
|
76
|
+
name: foobar
|
|
77
|
+
location: asia-northeast1
|
|
78
|
+
```
|
|
79
|
+
|
|
65
80
|
## Development
|
|
66
81
|
|
|
67
82
|
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/barruun.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
"
|
|
13
13
|
spec.description = "Barruun is a simple tool for Infrastructure as Code of Google Cloud Platform using `gcloud` command.
|
|
14
14
|
"
|
|
15
|
-
spec.required_ruby_version = ">= 2.
|
|
15
|
+
spec.required_ruby_version = ">= 2.5.0"
|
|
16
16
|
|
|
17
17
|
spec.metadata["source_code_uri"] = "https://github.com/colorfulcompany/barruun"
|
|
18
18
|
|
|
@@ -26,5 +26,4 @@ Gem::Specification.new do |spec|
|
|
|
26
26
|
spec.require_paths = ["lib"]
|
|
27
27
|
|
|
28
28
|
spec.add_runtime_dependency "thor", "~> 1.1"
|
|
29
|
-
spec.add_runtime_dependency "active_hash"
|
|
30
29
|
end
|
data/lib/barruun/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: barruun
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- cc-kawakami
|
|
@@ -24,20 +24,6 @@ dependencies:
|
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '1.1'
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: active_hash
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - ">="
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0'
|
|
34
|
-
type: :runtime
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
|
-
- - ">="
|
|
39
|
-
- !ruby/object:Gem::Version
|
|
40
|
-
version: '0'
|
|
41
27
|
description: 'Barruun is a simple tool for Infrastructure as Code of Google Cloud
|
|
42
28
|
Platform using `gcloud` command.
|
|
43
29
|
|
|
@@ -80,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
80
66
|
requirements:
|
|
81
67
|
- - ">="
|
|
82
68
|
- !ruby/object:Gem::Version
|
|
83
|
-
version: 2.
|
|
69
|
+
version: 2.5.0
|
|
84
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
71
|
requirements:
|
|
86
72
|
- - ">="
|