win_gui 0.2.19 → 0.2.20
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/HISTORY +4 -0
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/tasks/spec.rake +1 -0
- metadata +3 -3
data/HISTORY
CHANGED
data/README.rdoc
CHANGED
|
@@ -33,7 +33,7 @@ For example, here is how you deal with typical GUI-related tasks using Win:
|
|
|
33
33
|
end
|
|
34
34
|
close_window(window_handle)
|
|
35
35
|
|
|
36
|
-
This works fine, but such functional style
|
|
36
|
+
This works fine, but such functional style just does not feel like object-oriented Ruby.
|
|
37
37
|
Ideally, there should be a thin wrapper class around window handle, and the code above
|
|
38
38
|
should be more like this:
|
|
39
39
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.20
|
data/tasks/spec.rake
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: win_gui
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.2.
|
|
5
|
+
version: 0.2.20
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- arvicco
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-
|
|
13
|
+
date: 2011-03-14 00:00:00 +03:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -43,7 +43,7 @@ dependencies:
|
|
|
43
43
|
requirements:
|
|
44
44
|
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 0.3.
|
|
46
|
+
version: 0.3.26
|
|
47
47
|
type: :runtime
|
|
48
48
|
version_requirements: *id003
|
|
49
49
|
description: Work with Windows GUI in an object-oriented way. Abstractions/wrappers around GUI-related Win32 API functions
|