cubus-settingslogic 2.1.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,7 @@
1
+ == 2.1.1 released 2010-05-03
2
+
3
+ * removed name method due to conflict with ZenTest
4
+
1
5
  == 2.1.0 released 2010-03-15
2
6
 
3
7
  * Added key_by_path (e.g. Settings.key_by_path "some.nested.setting")
@@ -6,9 +6,6 @@ class Settingslogic < Hash
6
6
  class MissingSetting < StandardError; end
7
7
 
8
8
  class << self
9
- def name # :nodoc:
10
- instance.key?("name") ? instance.name : super
11
- end
12
9
 
13
10
  def source(value = nil)
14
11
  if value.nil?
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{cubus-settingslogic}
8
- s.version = "2.1.0"
8
+ s.version = "2.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ben Johnson of Binary Logic", "Mihai Târnovan of Cubus Arts", "Gabriel Târnovan of Cubus Arts"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 1
8
- - 0
9
- version: 2.1.0
8
+ - 1
9
+ version: 2.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ben Johnson of Binary Logic