complex_config 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ce13cd08f06b5f4cbcf993319840a6e66364e829
4
- data.tar.gz: 48210c13af7a8ce4c20f26702c580fa281ef2cb3
3
+ metadata.gz: d1cec6177e6fb30dc681ff964363b6b789e30394
4
+ data.tar.gz: d2baa8e27843849a856769a3043f779682d729b5
5
5
  SHA512:
6
- metadata.gz: 5e48627f0fccb16590ecbd1d5ee932f0ef882fda6201644d75467e37c30db1c4bef615401891c8aa137cb8224f5519eb1158123ff38861b6f0df8d00360470a5
7
- data.tar.gz: 87ce9842e6fc221a9677a2ba24bf4aa50d71e00b7e75dc897bc237148b4e1469d30b06c8f7dc352ec1add6abb456b2060be68589c64842572a84516d5d5cb36b
6
+ metadata.gz: 6689c101d9b8e1820ae84692cb46a0c5e8a15cc035f26606140cc9ddd8253b10d8c9e4691ac4ba042e71d7b4bf3b2c03fde9d03646a79dd87ce4b0c64a3206a5
7
+ data.tar.gz: aa8380663b66e80846bf380d6903faf175a675ccfcc2785f8ab6e6df9f30e08c7e90f8920861795a6fc03b0d4d9f5f16083043a7c0060bf5684647d80aaf0dab
data/README.md CHANGED
@@ -113,7 +113,8 @@ Here is the `ComplexConfig::Plugins::MONEY` plugin for example:
113
113
  end
114
114
 
115
115
  ## Changes
116
-
116
+ * 2015-02-25 Release 0.2.2
117
+ * Fix an issue with path interpolation.
117
118
  * 2015-01-28 Release 0.2.1
118
119
  * Turn monetize into a runtime dependency for the plugin.
119
120
  * 2015-01-27 Release 0.2.0
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
@@ -1,14 +1,14 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: complex_config 0.2.1 ruby lib
2
+ # stub: complex_config 0.2.2 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "complex_config"
6
- s.version = "0.2.1"
6
+ s.version = "0.2.2"
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib"]
10
10
  s.authors = ["Florian Frank"]
11
- s.date = "2015-01-28"
11
+ s.date = "2015-02-25"
12
12
  s.description = "This library allows you to access configuration files via a simple interface"
13
13
  s.email = "flori@ping.de"
14
14
  s.extra_rdoc_files = ["README.md", "lib/complex_config.rb", "lib/complex_config/errors.rb", "lib/complex_config/plugins.rb", "lib/complex_config/plugins/enable.rb", "lib/complex_config/plugins/money.rb", "lib/complex_config/plugins/uri.rb", "lib/complex_config/provider.rb", "lib/complex_config/rude.rb", "lib/complex_config/settings.rb", "lib/complex_config/shortcuts.rb", "lib/complex_config/version.rb"]
@@ -34,7 +34,7 @@ class ComplexConfig::Provider
34
34
  end
35
35
 
36
36
  def pathname(name)
37
- root + "config/#{name}.yml" % name
37
+ root + "config/#{name}.yml"
38
38
  end
39
39
 
40
40
  def config(pathname)
@@ -1,6 +1,6 @@
1
1
  module ComplexConfig
2
2
  # ComplexConfig version
3
- VERSION = '0.2.1'
3
+ VERSION = '0.2.2'
4
4
  VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: complex_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-28 00:00:00.000000000 Z
11
+ date: 2015-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gem_hadar