map 2.2.1 → 2.2.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.
- data/lib/map.rb +5 -5
- data/map.gemspec +1 -1
- metadata +4 -4
data/lib/map.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
class Map < Hash
|
2
|
-
Version = '2.2.
|
2
|
+
Version = '2.2.2' unless defined?(Version)
|
3
3
|
Load = Kernel.method(:load) unless defined?(Load)
|
4
4
|
|
5
5
|
class << Map
|
@@ -505,16 +505,16 @@ class Map < Hash
|
|
505
505
|
# a sane method missing that only supports writing values or reading
|
506
506
|
# *previously set* values
|
507
507
|
#
|
508
|
-
def method_missing(
|
509
|
-
method =
|
508
|
+
def method_missing(*args, &block)
|
509
|
+
method = args.first.to_s
|
510
510
|
case method
|
511
511
|
when /=$/
|
512
|
-
key =
|
512
|
+
key = args.shift.to_s.chomp('=')
|
513
513
|
value = args.shift
|
514
514
|
self[key] = value
|
515
515
|
else
|
516
516
|
key = method
|
517
|
-
super(
|
517
|
+
super(*args, &block) unless has_key?(key)
|
518
518
|
self[key]
|
519
519
|
end
|
520
520
|
end
|
data/map.gemspec
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: map
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 3
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 2.2.
|
9
|
+
- 2
|
10
|
+
version: 2.2.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Ara T. Howard
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-01-
|
18
|
+
date: 2011-01-26 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies: []
|
21
21
|
|