ruby-terraform 0.5.0 → 0.5.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
  SHA1:
3
- metadata.gz: 495ef01318ddc57c37fb25cf6c04c4e9db15cd28
4
- data.tar.gz: 2809580c9ace7a4af184cb699b0ee94759421767
3
+ metadata.gz: 02050c996a7a256625d0c264ea5f7cea31b7d476
4
+ data.tar.gz: 7dfd66659eca653c4747262fa4bf08f24ccb9825
5
5
  SHA512:
6
- metadata.gz: 9181054e31a60c8c8c21e9f6dc69ce842db9b6eb0b7672ec3b1146e50fe2357ff437c055ade4682b1108661fc85001774ca206b259b4d80513572cdc8280460c
7
- data.tar.gz: 474597664db46e457dbd770efed5a46d4b34d37017c64663d1da8a21b46b4f31c2632c0220aac216ae0c84ed7f4086f3076e90d1111b1f5c3fab6ae132858930
6
+ metadata.gz: d08e1205689821842bd11fdd2575f9614964293fa7006186e1a21833ad74ae3932b60b1770d049612c0eca628bda9034ab18b6ee3403a0499323135d023a2a85
7
+ data.tar.gz: fdc3713cd3245c04065144a61f49b257d3a1eed2fd4fe5f3a53fad55fbc52c69a282bff9e57e1598c21eb504b590250a95f664e6d6d8de7c368c4fd5108d726d
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby-terraform (0.5.0)
4
+ ruby-terraform (0.5.1)
5
5
  lino (~> 1.1)
6
6
 
7
7
  GEM
@@ -1,3 +1,3 @@
1
1
  module RubyTerraform
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.1"
3
3
  end
@@ -3,11 +3,14 @@ require 'ruby_terraform/commands'
3
3
 
4
4
  module RubyTerraform
5
5
  class << self
6
- attr_accessor :configuration
6
+ attr_writer :configuration
7
7
 
8
- def configure
8
+ def configuration
9
9
  @configuration ||= Configuration.new
10
- yield(@configuration)
10
+ end
11
+
12
+ def configure
13
+ yield(configuration)
11
14
  end
12
15
 
13
16
  def reset!
@@ -55,8 +58,8 @@ module RubyTerraform
55
58
  end
56
59
  extend ClassMethods
57
60
 
58
- def self.included( other )
59
- other.extend( ClassMethods )
61
+ def self.included(other)
62
+ other.extend(ClassMethods)
60
63
  end
61
64
 
62
65
  class Configuration
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.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Toby Clemson