rbgooey 0.0.4 → 0.0.5
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/CHANGES +22 -0
- data/GPL +674 -0
- data/README +37 -0
- data/lib/check.rb +13 -16
- data/lib/display.rb +15 -16
- data/lib/files.rb +32 -34
- data/lib/imagerender.rb +13 -15
- data/lib/imageui.rb +17 -15
- data/lib/mouse.rb +13 -15
- data/lib/rbgooey.rb +14 -16
- data/lib/rectcollide.rb +13 -15
- data/lib/setup.rb +14 -16
- data/lib/text.rb +13 -15
- data/lib/textrender.rb +15 -17
- data/lib/type.rb +3 -3
- data/lib/typelowercase.rb +14 -16
- data/lib/typelowerspecial.rb +15 -16
- data/lib/typespecialcommands.rb +14 -16
- data/lib/uidata.rb +3 -2
- metadata +43 -33
data/lib/uidata.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#Copyright (C) 2007 Han Dao
|
|
1
|
+
#Copyright (C) 2007-2008 Han Dao and contributors
|
|
2
2
|
#
|
|
3
3
|
#This program is free software: you can redistribute it and/or modify
|
|
4
4
|
#it under the terms of the GNU General Public License as published by
|
|
@@ -46,5 +46,6 @@ class UiData
|
|
|
46
46
|
@rect.clear()
|
|
47
47
|
@string.clear()
|
|
48
48
|
@action.clear()
|
|
49
|
+
@text.render.y_value = 0
|
|
49
50
|
end
|
|
50
|
-
end
|
|
51
|
+
end
|
metadata
CHANGED
|
@@ -1,33 +1,26 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
|
-
rubygems_version: 0.9.4
|
|
3
|
-
specification_version: 1
|
|
4
2
|
name: rbgooey
|
|
5
3
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.0.
|
|
7
|
-
date: 2008-06-13 00:00:00 -04:00
|
|
8
|
-
summary: GUI library for the Rubygame library
|
|
9
|
-
require_paths:
|
|
10
|
-
- - lib
|
|
11
|
-
email: wikipediankiba@gmail.com
|
|
12
|
-
homepage: http://rbgooey.rubyforge.org
|
|
13
|
-
rubyforge_project:
|
|
14
|
-
description:
|
|
15
|
-
autorequire: rbgooey.rb
|
|
16
|
-
default_executable:
|
|
17
|
-
bindir: bin
|
|
18
|
-
has_rdoc: false
|
|
19
|
-
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
20
|
-
requirements:
|
|
21
|
-
- - ">"
|
|
22
|
-
- !ruby/object:Gem::Version
|
|
23
|
-
version: 0.0.0
|
|
24
|
-
version:
|
|
4
|
+
version: 0.0.5
|
|
25
5
|
platform: ruby
|
|
26
|
-
signing_key:
|
|
27
|
-
cert_chain:
|
|
28
|
-
post_install_message:
|
|
29
6
|
authors:
|
|
30
7
|
- Han Dao
|
|
8
|
+
autorequire: rbgooey.rb
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2008-07-21 00:00:00 -04:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
16
|
+
description:
|
|
17
|
+
email: wikipediankiba@gmail.com
|
|
18
|
+
executables: []
|
|
19
|
+
|
|
20
|
+
extensions: []
|
|
21
|
+
|
|
22
|
+
extra_rdoc_files: []
|
|
23
|
+
|
|
31
24
|
files:
|
|
32
25
|
- lib/check.rb
|
|
33
26
|
- lib/display.rb
|
|
@@ -45,17 +38,34 @@ files:
|
|
|
45
38
|
- lib/typelowerspecial.rb
|
|
46
39
|
- lib/typespecialcommands.rb
|
|
47
40
|
- lib/uidata.rb
|
|
48
|
-
|
|
49
|
-
|
|
41
|
+
- CHANGES
|
|
42
|
+
- GPL
|
|
43
|
+
- README
|
|
44
|
+
has_rdoc: false
|
|
45
|
+
homepage: http://kibabase.libregamewiki.org/index.php/RbGooey
|
|
46
|
+
post_install_message:
|
|
50
47
|
rdoc_options: []
|
|
51
48
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
49
|
+
require_paths:
|
|
50
|
+
- - lib
|
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
52
|
+
requirements:
|
|
53
|
+
- - ">="
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: "0"
|
|
56
|
+
version:
|
|
57
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: "0"
|
|
62
|
+
version:
|
|
58
63
|
requirements: []
|
|
59
64
|
|
|
60
|
-
|
|
65
|
+
rubyforge_project: rbgooey
|
|
66
|
+
rubygems_version: 1.2.0
|
|
67
|
+
signing_key:
|
|
68
|
+
specification_version: 2
|
|
69
|
+
summary: GUI library for the Rubygame library
|
|
70
|
+
test_files: []
|
|
61
71
|
|