complex_config 0.2.2 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d1cec6177e6fb30dc681ff964363b6b789e30394
4
- data.tar.gz: d2baa8e27843849a856769a3043f779682d729b5
3
+ metadata.gz: a2ddd63fa3baff35f04957e3a84840ac417a83e0
4
+ data.tar.gz: 5cf7b7610df168f0b90c052ed97074c35c57f5b0
5
5
  SHA512:
6
- metadata.gz: 6689c101d9b8e1820ae84692cb46a0c5e8a15cc035f26606140cc9ddd8253b10d8c9e4691ac4ba042e71d7b4bf3b2c03fde9d03646a79dd87ce4b0c64a3206a5
7
- data.tar.gz: aa8380663b66e80846bf380d6903faf175a675ccfcc2785f8ab6e6df9f30e08c7e90f8920861795a6fc03b0d4d9f5f16083043a7c0060bf5684647d80aaf0dab
6
+ metadata.gz: 109d842367862e0cbdee94a26221d47e9b4e4150f540b2cf801738bf6a9da5d0eff50426e567dd7f84ac4c204a69d2dec41131090798ef7aece88a9deacfbb0c
7
+ data.tar.gz: 6f824ff2f1314a8c5bf0d6014afd20239ba4629ed06d099f2d184b85cdd8cb63f66e2295e4b1dc63dce02ca7f173df8677de9a223d5967087f81193d47036394
data/.travis.yml CHANGED
@@ -3,9 +3,10 @@ rvm:
3
3
  - 2.1
4
4
  - 2.2
5
5
  - ruby-head
6
- - jruby
6
+ - jruby-head
7
7
  matrix:
8
8
  allow_failures:
9
9
  - rvm: ruby-head
10
+ - rvm: jruby-head
10
11
  env:
11
12
  - RAILS_ENV=development CODECLIMATE_REPO_TOKEN=b2d573b4ad139331f307e536679084a8ec269d721e31b0afe81c503a7ab0c683
data/README.md CHANGED
@@ -113,6 +113,8 @@ Here is the `ComplexConfig::Plugins::MONEY` plugin for example:
113
113
  end
114
114
 
115
115
  ## Changes
116
+ * 2015-03-24 Release 0.2.3
117
+ * Fix typo in load error case of money.
116
118
  * 2015-02-25 Release 0.2.2
117
119
  * Fix an issue with path interpolation.
118
120
  * 2015-01-28 Release 0.2.1
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.2
1
+ 0.2.3
@@ -1,14 +1,14 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: complex_config 0.2.2 ruby lib
2
+ # stub: complex_config 0.2.3 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "complex_config"
6
- s.version = "0.2.2"
6
+ s.version = "0.2.3"
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-02-25"
11
+ s.date = "2015-03-24"
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"]
@@ -1,6 +1,6 @@
1
1
  begin
2
2
  require 'monetize'
3
- rescue LoadErro
3
+ rescue LoadError
4
4
  if $DEBUG
5
5
  warn 'Cannot load runtime dependency "monetize":"\
6
6
  " Skipping plugin ComplexConfig::Plugins::MONEY.'
@@ -1,6 +1,6 @@
1
1
  module ComplexConfig
2
2
  # ComplexConfig version
3
- VERSION = '0.2.2'
3
+ VERSION = '0.2.3'
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.2
4
+ version: 0.2.3
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-02-25 00:00:00.000000000 Z
11
+ date: 2015-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gem_hadar