uber_config 1.0.0 → 1.0.1

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.
@@ -1,3 +1,4 @@
1
+ require 'yaml'
1
2
  require "uber_config/version"
2
3
 
3
4
  module UberConfig
@@ -1,3 +1,3 @@
1
1
  module UberConfig
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uber_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -23,7 +23,6 @@ files:
23
23
  - README.md
24
24
  - Rakefile
25
25
  - lib/uber_config.rb
26
- - lib/uber_config/uber_hash.rb
27
26
  - lib/uber_config/version.rb
28
27
  - test/config.json
29
28
  - test/config.yml
@@ -1,12 +0,0 @@
1
- class UberHash < Hash
2
-
3
- def [](key)
4
- r = super[key]
5
- return r if r
6
- if r.is_a?(Symbol)
7
- return super[key.to_s]
8
- end
9
- r
10
- end
11
-
12
- end