ruby-terraform 0.9.0 → 0.10.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
  SHA1:
3
- metadata.gz: 486a134fa4b6091b4538ff6e7ce3418f4d836f94
4
- data.tar.gz: 9a9299c49ad4aef6c864856c729bff9e3b06d358
3
+ metadata.gz: 45d6e6054b0fc6c230e5fbe0d2fd8eb83fdfdb3a
4
+ data.tar.gz: 7b9a2c1ebc783c7978e0bcd19bc0ec922c1f2a78
5
5
  SHA512:
6
- metadata.gz: df445931af41a83ead9fc0a9a89a450988242414995d49c0014825f62eebdc20971cce7cba79f170c747ff70ce472589c7b8ce128040c8caec55873075fda58a
7
- data.tar.gz: 06f3bc3db045c30287c9e7751cac61dd0a955b410a9e145e3a5d34cfc0075c18fbe398c892cc9066818c9b086696dd8a3cd2e116fb87a71461c11e5e8b35ed8f
6
+ metadata.gz: f509d8f32ff9c8a226872f453a25b3c4a9d59afe8de5adda32f685df5a671d129c9a00721abd75aefd37d25cfee5efdbeaba2637ac172ba391a78a1237432d51
7
+ data.tar.gz: ea86fa881219875894a94361d8f6ca92d33c0032202217ac4b320ebf1ecee22eebe9f7b28de7c9600ca4c34449b9d7011b9984945dc77e1b0e60e8ede692f6fb
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby-terraform (0.9.0)
4
+ ruby-terraform (0.10.0)
5
5
  lino (~> 1.1)
6
6
 
7
7
  GEM
@@ -42,4 +42,4 @@ DEPENDENCIES
42
42
  ruby-terraform!
43
43
 
44
44
  BUNDLED WITH
45
- 1.15.4
45
+ 1.16.0.pre.2
data/README.md CHANGED
@@ -85,6 +85,8 @@ The init command supports the following options passed as keyword arguments:
85
85
  * `backend_config`: a map of backend specific configuration parameters.
86
86
  * `no_color`: whether or not the output from the command should be in color;
87
87
  defaults to `false`.
88
+ * `plugin_dir`: directory containing plugin binaries. Overrides all default;
89
+ search paths for plugins and prevents the automatic installation of plugins.
88
90
 
89
91
 
90
92
  ### RubyTerraform::Commands::Get
@@ -11,6 +11,7 @@ module RubyTerraform
11
11
  backend_config = opts[:backend_config] || {}
12
12
  source = opts[:from_module]
13
13
  path = opts[:path]
14
+ plugin_dir = opts[:plugin_dir]
14
15
 
15
16
  builder = builder
16
17
  .with_subcommand('init') do |sub|
@@ -18,6 +19,7 @@ module RubyTerraform
18
19
  sub = sub.with_option('-get', get) unless get.nil?
19
20
  sub = sub.with_option('-from-module', source) if source
20
21
  sub = sub.with_flag('-no-color') if no_color
22
+ sub = sub.with_option('-plugin-dir', plugin_dir) unless plugin_dir.nil?
21
23
  backend_config.each do |key, value|
22
24
  sub = sub.with_option(
23
25
  '-backend-config',
@@ -1,3 +1,3 @@
1
1
  module RubyTerraform
2
- VERSION = "0.9.0"
2
+ VERSION = "0.10.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-terraform
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Toby Clemson