barruun 0.1.0 → 0.1.1

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: e1fa2933b604341ff43216307219cc5f831cb78e1f50e692a8704414a1fb4c4c
4
- data.tar.gz: 91897fdba7e08e3d193528d4c2ee8ea1d7a2d3be5e261fe0f12b2b1161b7bcd1
3
+ metadata.gz: 64f304a776a79c69b23f954502e22e6b0ec84808dcf5bb8448fd3574fde4d692
4
+ data.tar.gz: 0eeabbcb7f812219d92f6b0105a50c2189eaafbb1e9e1494104a6b86f49414c5
5
5
  SHA512:
6
- metadata.gz: 55ea9cf94b0a5e500ee548b2e82525d27dd0c792bfdffba702bbd994f87aeca4cc1d52458c6cc27c4da4f99732f796a8d51c993f838e0a933eab99086a4aa92a
7
- data.tar.gz: d0c105c3d7da2b1fdcd25bbdb2bb20a9ddb68912ce51af16e01c91dc21edaf968f30e6594a81cac5730a19a87267139ecb18d2a5c6290fe08bda3db480751ee8
6
+ metadata.gz: 6241c035c3b74444334fd115d5b8376749a5cb338ec7d639103778045ead094e906a552c56fc8f97a422631c94e7d36293b36e97d23f8462d504a45c2f76b561
7
+ data.tar.gz: 0e2b71e50c8e641cc88501c2fb25ed9b660f81a0cead88e6e708dfcd9252a4312c1180fadbbe4c8bbfa7e0c1cddf59499e1dd61ff5003666876a05d8ada27d97
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- barruun (0.1.0)
4
+ barruun (0.1.1)
5
5
  active_hash
6
6
  thor (~> 1.1)
7
7
 
data/barruun.gemspec CHANGED
@@ -8,8 +8,10 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["cc-kawakami"]
9
9
  spec.email = ["kawakami-moeki@colorfulcompany.co.jp"]
10
10
 
11
- spec.summary = "Setup Google Cloud Platform"
12
- spec.description = "Setup Google Cloud Platform"
11
+ spec.summary = "Barruun is a simple tool for Infrastructure as Code of Google Cloud Platform using `gcloud` command.
12
+ "
13
+ spec.description = "Barruun is a simple tool for Infrastructure as Code of Google Cloud Platform using `gcloud` command.
14
+ "
13
15
  spec.required_ruby_version = ">= 2.6.0"
14
16
 
15
17
  spec.metadata["source_code_uri"] = "https://github.com/colorfulcompany/barruun"
@@ -7,10 +7,10 @@ module Barruun
7
7
 
8
8
  def call
9
9
  if exist?
10
+ puts "#{self.class.name} #{@config.name} already exists. Nothing to do."
11
+ else
10
12
  puts "#{self.class.name} #{@config.name} not found."
11
13
  create
12
- else
13
- puts "#{self.class.name} #{@config.name} already exists. Nothing to do."
14
14
  end
15
15
  end
16
16
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Barruun
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - cc-kawakami
@@ -38,7 +38,10 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: Setup Google Cloud Platform
41
+ description: 'Barruun is a simple tool for Infrastructure as Code of Google Cloud
42
+ Platform using `gcloud` command.
43
+
44
+ '
42
45
  email:
43
46
  - kawakami-moeki@colorfulcompany.co.jp
44
47
  executables:
@@ -56,12 +59,12 @@ files:
56
59
  - bin/setup
57
60
  - exe/barruun
58
61
  - lib/barruun.rb
59
- - lib/barruun/base.rb
60
62
  - lib/barruun/cli.rb
61
63
  - lib/barruun/logging/sink.rb
62
64
  - lib/barruun/logging/sink/config.rb
63
65
  - lib/barruun/storage/bucket.rb
64
66
  - lib/barruun/storage/bucket/config.rb
67
+ - lib/barruun/utils.rb
65
68
  - lib/barruun/version.rb
66
69
  homepage:
67
70
  licenses: []
@@ -85,5 +88,6 @@ requirements: []
85
88
  rubygems_version: 3.2.32
86
89
  signing_key:
87
90
  specification_version: 4
88
- summary: Setup Google Cloud Platform
91
+ summary: Barruun is a simple tool for Infrastructure as Code of Google Cloud Platform
92
+ using `gcloud` command.
89
93
  test_files: []