gem_configurator 0.0.1 → 0.0.2

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.
@@ -14,4 +14,5 @@ Gem::Specification.new do |gem|
14
14
  gem.name = "gem_configurator"
15
15
  gem.require_paths = ["lib"]
16
16
  gem.version = GemConfigurator::VERSION
17
+ gem.add_dependency('active_support', '>= 3.0.0')
17
18
  end
@@ -1,3 +1,3 @@
1
1
  module GemConfigurator
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -1,4 +1,5 @@
1
1
  require "gem_configurator/version"
2
+ require 'active_support/inflector'
2
3
 
3
4
  module GemConfigurator
4
5
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem_configurator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,18 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
  date: 2012-08-23 00:00:00.000000000Z
13
- dependencies: []
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: active_support
16
+ requirement: &2165746480 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 3.0.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *2165746480
14
25
  description: Implements a standard way of using yml files to configure gems.
15
26
  email:
16
27
  - ian@ianwhitney.com