configatron 2.8.0 → 2.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/configatron/store.rb +6 -2
  2. metadata +6 -4
@@ -320,8 +320,12 @@ class Configatron
320
320
  undef :test # :nodoc:
321
321
  rescue Exception => e
322
322
  end
323
-
324
- SYCK_CONSTANT = (RUBY_VERSION.match(/^1\.9/) ? Syck::MergeKey : YAML::Syck::MergeKey)
323
+
324
+ if RUBY_PLATFORM == 'java'
325
+ SYCK_CONSTANT = YAML::Yecht::MergeKey
326
+ else
327
+ SYCK_CONSTANT = (RUBY_VERSION.match(/^1\.9/) ? Syck::MergeKey : YAML::Syck::MergeKey)
328
+ end
325
329
 
326
330
  end # Store
327
331
  end # Configatron
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: configatron
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.8.0
5
+ version: 2.8.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - markbates
@@ -10,7 +10,8 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-05-20 00:00:00 Z
13
+ date: 2011-06-17 00:00:00 -04:00
14
+ default_executable:
14
15
  dependencies:
15
16
  - !ruby/object:Gem::Dependency
16
17
  name: yamler
@@ -51,6 +52,7 @@ files:
51
52
  - generators/templates/configatron/production.rb
52
53
  - generators/templates/configatron/test.rb
53
54
  - generators/templates/initializers/configatron.rb
55
+ has_rdoc: true
54
56
  homepage: http://www.metabates.com
55
57
  licenses: []
56
58
 
@@ -64,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
64
66
  requirements:
65
67
  - - ">="
66
68
  - !ruby/object:Gem::Version
67
- hash: 2250820605778868147
69
+ hash: -4517029793816815371
68
70
  segments:
69
71
  - 0
70
72
  version: "0"
@@ -77,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
79
  requirements: []
78
80
 
79
81
  rubyforge_project: magrathea
80
- rubygems_version: 1.8.2
82
+ rubygems_version: 1.6.2
81
83
  signing_key:
82
84
  specification_version: 3
83
85
  summary: A powerful Ruby configuration system.