mux_tf 0.3.2 → 0.3.3

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: 5f2940b8702e57dae5ff71b8f777e99795dfc041984559de93cf81a920047ab2
4
- data.tar.gz: d07b3c1e3d0f2545c5cf1a7813b693ff17c15fe896af3039b3aa5d220fcb64b1
3
+ metadata.gz: ab900407c76f197de3a2833c0cae7c3e6fd1b6b588b6bb12e7bb8165e6ec986a
4
+ data.tar.gz: f64d06ba3509348a8327e3de628392d1dd72966a0ec42e278dd24a11c4cb39ce
5
5
  SHA512:
6
- metadata.gz: 1050a664da014f3efd5005eb98acb79931328b31782864644285ec3a3d6caedcfa2dc760e483fc0f1ea8a513834c2ad087e02c00a216ee4dc3a7a0ac02287515
7
- data.tar.gz: 5d4f4380fb4769b080b4c3de572ae08805c4b9a3b9fadd0ee76c76a7f1514db66bf1c3559b672631c996cb343e9da775e159cdce556278ae002a484fce912ddf
6
+ metadata.gz: cbb46136fb879b83bb40279a7b3cfdab5849e65f22381946ca0124419c19f5b55dc07fbb9034bbab56adb19da085b7fa50b53ae777d85798d572eee033d4c956
7
+ data.tar.gz: ec8dc1357c7a26af9ba58563c097e6cc704fe2fb351f8fe1176063a2645927a1b7b9a7bf2177b304bd51c0d69b5881b18a64cac292781bc8c642e7bf9974029d
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MuxTf
4
- VERSION = "0.3.2"
4
+ VERSION = "0.3.3"
5
5
  end
@@ -1,40 +1,39 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative 'lib/mux_tf/version'
3
+ require_relative "lib/mux_tf/version"
4
+ require "rake"
4
5
 
5
6
  Gem::Specification.new do |spec|
6
- spec.name = 'mux_tf'
7
- spec.version = MuxTf::VERSION
8
- spec.authors = ['Piotr Banasik']
9
- spec.email = ['piotr@jane.app']
7
+ spec.name = "mux_tf"
8
+ spec.version = MuxTf::VERSION
9
+ spec.authors = ["Piotr Banasik"]
10
+ spec.email = ["piotr@jane.app"]
10
11
 
11
- spec.summary = 'Terraform Multiplexing Scripts'
12
+ spec.summary = "Terraform Multiplexing Scripts"
12
13
  # spec.description = 'TODO: Write a longer description or delete this line.'
13
- spec.homepage = 'https://github.com/piotrb/mux_tf'
14
- spec.license = 'MIT'
15
- spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
14
+ spec.homepage = "https://github.com/piotrb/mux_tf"
15
+ spec.license = "MIT"
16
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
16
17
 
17
18
  # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
18
19
 
19
- spec.metadata['homepage_uri'] = spec.homepage
20
- spec.metadata['source_code_uri'] = spec.homepage
20
+ spec.metadata["homepage_uri"] = spec.homepage
21
+ spec.metadata["source_code_uri"] = spec.homepage
21
22
  # spec.metadata['changelog_uri'] = "TODO: Put your gem's CHANGELOG.md URL here."
22
23
 
23
24
  # Specify which files should be added to the gem when it is released.
24
25
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
26
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
27
- end
28
- spec.bindir = 'exe'
29
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
30
- spec.require_paths = ['lib']
26
+ spec.files = Rake::FileList["exe/*", "lib/**/*.rb", "*.gemspec"]
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
31
30
 
32
- spec.add_dependency 'activesupport'
33
- spec.add_dependency 'dotenv'
34
- spec.add_dependency 'paint'
35
- spec.add_dependency 'pastel'
36
- spec.add_dependency 'piotrb_cli_utils', '~> 0.1.0'
37
- spec.add_dependency 'stateful_parser', '~> 0.1.1'
38
- spec.add_dependency 'tty-prompt'
39
- spec.add_dependency 'tty-table'
31
+ spec.add_dependency "activesupport"
32
+ spec.add_dependency "dotenv"
33
+ spec.add_dependency "paint"
34
+ spec.add_dependency "pastel"
35
+ spec.add_dependency "piotrb_cli_utils", "~> 0.1.0"
36
+ spec.add_dependency "stateful_parser", "~> 0.1.1"
37
+ spec.add_dependency "tty-prompt"
38
+ spec.add_dependency "tty-table"
40
39
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mux_tf
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Banasik
@@ -132,11 +132,6 @@ executables:
132
132
  extensions: []
133
133
  extra_rdoc_files: []
134
134
  files:
135
- - ".gitignore"
136
- - Gemfile
137
- - LICENSE.txt
138
- - README.md
139
- - Rakefile
140
135
  - exe/tf_current
141
136
  - exe/tf_mux
142
137
  - exe/tf_plan_summary
data/.gitignore DELETED
@@ -1,10 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
9
-
10
- Gemfile.lock
data/Gemfile DELETED
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source 'https://rubygems.org'
4
-
5
- # Specify your gem's dependencies in mux_tf.gemspec
6
- gemspec
7
-
8
- gem 'rake', '~> 12.0'
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2020 Piotr Banasik
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
data/README.md DELETED
@@ -1,52 +0,0 @@
1
- # MuxTf
2
-
3
- Terraform Module Multiplexer
4
-
5
- ## Installation
6
-
7
- ```shell
8
- gem install mux_tf
9
- ```
10
-
11
- ## Usage
12
-
13
- At the root folder of your terraform modules eg:
14
-
15
- ```text
16
- ROOT/
17
- production/ << == HERE
18
- group1/
19
- cluster1/
20
- main.tf
21
- cluster2/
22
- main.tf
23
- group2/
24
- cluster3/
25
- main.tf
26
- cluster4/
27
- main.tf
28
- sandbox/ << == OR HERE
29
- {SIMILLAR STRUCTURE}
30
- ```
31
-
32
- ## Development
33
-
34
- To install this gem onto your local machine, run `bundle exec rake install`.
35
-
36
- ## Releasing
37
-
38
- To release a new version, first bump the version number by running:
39
-
40
- ```shell
41
- gem bump -v major|minor|patch
42
- ```
43
-
44
- And then run `rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
45
-
46
- ## Contributing
47
-
48
- Bug reports and pull requests are welcome on GitHub at https://github.com/piotrb/mux_tf.
49
-
50
- ## License
51
-
52
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile DELETED
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'bundler/gem_tasks'
4
- # task :default => :spec