gosu 0.11.3 → 0.11.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/gosu/compat.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7d373f3c18bf8290ded150c92e00fe8aefe4622
|
4
|
+
data.tar.gz: 32e974e19a7b7c3b29dba6e72eb0f85ec768ab8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a374719a095b3778956583007aed12214f58dc097348681e1627904a83713ff1335137d1c9c580d685b4aa88c69704e17a8cc7cd7686ac84393a4ccf1627249d
|
7
|
+
data.tar.gz: 3ba325813d86c06d32db804df36fc6deea9d3e2ab158a2ad6335007e99cd26949bf5023eb818a813523de287613c2f0e07709979fb6469710fef3b0ebc60a85d
|
data/lib/gosu/compat.rb
CHANGED
@@ -175,7 +175,7 @@ module Gosu
|
|
175
175
|
when :KB_RIGHT_BRACKET then "KbBracketRight"
|
176
176
|
else new_name.to_s.capitalize.gsub(/_(.)/) { $1.upcase }
|
177
177
|
end
|
178
|
-
Gosu.const_set old_name, new_name
|
178
|
+
Gosu.const_set old_name, Gosu.const_get(new_name)
|
179
179
|
|
180
180
|
# Also import old-style constants into Gosu::Button.
|
181
181
|
Gosu::Button.const_set old_name, Gosu.const_get(new_name)
|