host_config 0.0.2 → 0.0.3

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 (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/host_config.rb +2 -1
  3. metadata +18 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e5064acc25e2c89418d968e3db81b80113fd1f1b
4
- data.tar.gz: f5646bd4e02b77549f53d71428e86b95f2dc4909
3
+ metadata.gz: a15f8f6babe7c863c16b43bf7059a1de63274fbd
4
+ data.tar.gz: e0691357863f06c6d41db97d4dacf1124c50609c
5
5
  SHA512:
6
- metadata.gz: 8dfa5b6ad69c12073a68aa709e4e82c61e0c06bbe68205bfbe410027285c0e7e7b798a61ae8317b9fd08bf65b686a214244ea3e352e28cbe79895a13163ff5a0
7
- data.tar.gz: 2c3c3c3745ca12572ecf5e810378cd36bdca18268025facf6641f46b5cba07bc1a1d0d43cbc5fbc5369aadb214e88c809b7eebfb084e36119f5fb35fca9a6e71
6
+ metadata.gz: b38244015141719c75b89c41bc508772c81b0e190cfb7291963291ec605a31baa0677f79abaf3a36e799a6407a37de6d1857be97c44db87383b87a89e76e9e9a
7
+ data.tar.gz: b2958b682ac9e95dc31bb6b16a50533032b8d64a9507ae84787496f2e01700a8631c0e7edc061fab0a3bf8d4760c5133fcf507b4552341ea3f4478376efd49dd
@@ -1,8 +1,9 @@
1
1
  require 'ostruct'
2
2
  require 'socket'
3
+ require 'active_support/core_ext/hash'
3
4
 
4
5
  module HostConfig
5
- VERSION = "0.0.2"
6
+ VERSION = "0.0.3"
6
7
 
7
8
  class MissingConfigFile < StandardError; end
8
9
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: host_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Funduk
@@ -24,7 +24,22 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '4.0'
27
- description: HostConfig is easy app configuration for Ruby apps.
27
+ - !ruby/object:Gem::Dependency
28
+ name: activesupport
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 3.0.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 3.0.0
41
+ description: "\n HostConfig is easy app configuration for Ruby apps that\n uses
42
+ yml files to build up a nested OpenStruct for use globally\n in an app.\n "
28
43
  email:
29
44
  - ryan.funduk@gmail.com
30
45
  executables: []
@@ -57,5 +72,5 @@ rubyforge_project:
57
72
  rubygems_version: 2.2.2
58
73
  signing_key:
59
74
  specification_version: 4
60
- summary: Simple per-host configuration for Rails 4.
75
+ summary: Simple per-host configuration for Ruby apps.
61
76
  test_files: []