tiller 0.0.5 → 0.0.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/tiller +1 -1
  3. data/lib/tiller/data/file.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c4ca53cc681827456c07f791d7d58e558014cc7e
4
- data.tar.gz: cae787837375bc7ba3b54eaf784e90b33c762385
3
+ metadata.gz: bd958ba1c0e66b1e54547ac98436ba84e9be896d
4
+ data.tar.gz: 55d57829b65b20e0e1be7bc5cc49afb9744c2dc3
5
5
  SHA512:
6
- metadata.gz: c75b645fd91e5225352848b1443eaf2dbee36d8d352d5bab64e3a46fc2d098bbbdc00abce8bfd57a6895cb9840517e4bfb5688ddd2c3596bde1a1c51c849d197
7
- data.tar.gz: d0a19d94b88af5e848f5d53147aeb50d3a49a788c6b567e536cc3e54bdbaf9ea418e89c6750dbf586c5157ab26e57a62154ff8bbce83fefec839a58c2eda5e37
6
+ metadata.gz: 822807def996500c7ceff08de5345c553c4fc15507154db623314ab2f5dfbb8419c8181fb7fc98e7ad8f04a8213c20d06e25c39908ff7e557370030f3228bfbc
7
+ data.tar.gz: 0f629877a94570f44b5097bf4415acf89c7e87cea797a4bb27a3c10a2841a16381813fefe9da86bddc03e5bcd98ee8ae9f64cc4ed4f225a03d4c1f7f981a1058
data/bin/tiller CHANGED
@@ -3,7 +3,7 @@
3
3
  # Named from the first ship-building (Docker) related term I could find that didn't have an existing gem named after it!
4
4
  # Mark Round <github@markround.com>
5
5
 
6
- VERSION='0.0.5'
6
+ VERSION='0.0.6'
7
7
 
8
8
  require 'erb'
9
9
  require 'ostruct'
@@ -18,7 +18,7 @@ class FileDataSource < Tiller::DataSource
18
18
  end
19
19
 
20
20
  def target_values(template_name)
21
- @config_hash.has_key?(template_name) ? @config_hash[template_name]['config'] : Hash.new
21
+ @config_hash.has_key?(template_name) ? @config_hash[template_name] : Hash.new
22
22
  end
23
23
 
24
24
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiller
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Round