hierarchical_config 0.6 → 0.7

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3107034186ffc52f02eab9155e1be4d536682e3b
4
- data.tar.gz: 33e27c9ae7c419a7b377267e76e15645a5e86d2f
3
+ metadata.gz: a62f19f8a7966878ec50be8bf611d3c8f22bb4ee
4
+ data.tar.gz: 2cd93af27c41376f9f6508382178f04a80ca6e1c
5
5
  SHA512:
6
- metadata.gz: d7508f8fd4682ad689f2d630e5c367a064d89080fe772f50acf1aa465420deeca1f30e4b09e10503ac289843ceecf6889fa722a78433c94e4de73863b90d94a4
7
- data.tar.gz: 4e5a432670a299702cd0ff84b0dd3ffe4cd3cb24b0746c047069c1cbbf6d9a66974f5a1b80c580d31c724f836cf576ee9af77ce6fa3242e2d553e8a0802b565f
6
+ metadata.gz: 25eb992e932755e2528cf2be6b03cb693053ad14ec50c1d3ee7449b3b9eb5b4f5d7640ccd2a97ce9b6330f6fef4cc6234915c50182ef106180a4c1d0b3fe21af
7
+ data.tar.gz: ab38d3da65541b0b1c5f5988490945a99c28ccf2dd13c21611ed7909a39f948a600fa5f3ab94f47aed605ddc0edd70e36e68eed0565427a5749c660a2ecbc28e
data/README.markdown CHANGED
@@ -1,3 +1,5 @@
1
+ [![Build Status](https://travis-ci.org/timgaleckas/hierarchical_config.svg?branch=master)](https://travis-ci.org/timgaleckas/hierarchical_config)
2
+
1
3
  ## What is it
2
4
 
3
5
  HierarchicalConfig is a library that implements a strategy for configuring an application in a static, declarative, robust, and intuitive way
@@ -32,6 +32,8 @@ module HierarchicalConfig
32
32
  send(attribute)
33
33
  end
34
34
 
35
+ alias :each :each_pair
36
+
35
37
  def to_hash
36
38
  @table.inject({}) do |hash, key_value|
37
39
  key, value = *key_value
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hierarchical_config
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.6'
4
+ version: '0.7'
5
5
  platform: ruby
6
6
  authors:
7
7
  - timgaleckas
@@ -40,7 +40,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
40
40
  version: '0'
41
41
  requirements: []
42
42
  rubyforge_project:
43
- rubygems_version: 2.2.2
43
+ rubygems_version: 2.6.11
44
44
  signing_key:
45
45
  specification_version: 4
46
46
  summary: Robust strategy for defining the configuration accross environments, machines,