gosu 0.11.3-x86-mingw32 → 0.11.3.1-x86-mingw32
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 +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: 66947064d8de309a432ff161bb3fa5e9f1ee28e1
|
4
|
+
data.tar.gz: 4c57e583a0a18b464e05c6fb2e7f2942a3d6a4b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 792f3cd5ee0b2d625cfe660d083bc7322a562d2b54b1bb7b5172fa07a981d8f139d41060393d96098903e6de40582d2960a5d60f72c7c060f9f7d8d1f3495407
|
7
|
+
data.tar.gz: 85ba6aac18aeefe1aa89d7937d090015936ae8fd075a415432d5df2212745e9f9a69eb5cb390a38eb5587fe82d61eb4d69e0abbda2da3b46f79d426f3eaef06e
|
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)
|