ffi-wingui-core 1.0.1 → 1.0.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.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +13 -0
- data/RELNOTES.md +5 -0
- data/lib/ffi-wingui-core/common.rb +6 -0
- data/screenshot.png +0 -0
- metadata +26 -21
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0cbeda57b1a10c5a66bee6eefd71882317945703
|
|
4
|
+
data.tar.gz: 929bd3f19fb284a841cd66102c57c8cd497b34a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f71e3f89da3f4a5ecd63434d555fc43a3ecfe08de1d3e61eec43153a3b1ac502725d167072113fa18c20f8fddfe0852e1a90675df12453d8a143c35db24122eb
|
|
7
|
+
data.tar.gz: e23136dbbf4d5770d8120849c8e55d9bb99341544ff2b77cb41572454aa3894d08a837fc07abfac0b6adf86e3cb8fb81753bc23ba7dc9da9bfa8dbfbef4f3a6f
|
data/LICENSE
CHANGED
data/README.md
ADDED
data/RELNOTES.md
ADDED
|
@@ -6,6 +6,8 @@ WINGUI_DPI_AWARE = true unless defined?(WINGUI_DPI_AWARE)
|
|
|
6
6
|
module WinGUI
|
|
7
7
|
extend FFI::Library
|
|
8
8
|
|
|
9
|
+
VERSION = '1.0.2'
|
|
10
|
+
|
|
9
11
|
module Util
|
|
10
12
|
def FormatException(ex)
|
|
11
13
|
str, trace = ex.to_s, ex.backtrace
|
|
@@ -151,3 +153,7 @@ module WinGUI
|
|
|
151
153
|
:bottom, :long
|
|
152
154
|
end
|
|
153
155
|
end
|
|
156
|
+
|
|
157
|
+
if __FILE__ == $0
|
|
158
|
+
puts WinGUI::VERSION
|
|
159
|
+
end
|
data/screenshot.png
ADDED
|
Binary file
|
metadata
CHANGED
|
@@ -1,41 +1,39 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ffi-wingui-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Radoslav Peev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - ~>
|
|
17
|
+
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1
|
|
19
|
+
version: '1'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - ~>
|
|
24
|
+
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '1
|
|
27
|
-
description:
|
|
28
|
-
email:
|
|
26
|
+
version: '1'
|
|
27
|
+
description: Ruby-FFI (x86) bindings to essential GUI-related Windows APIs
|
|
28
|
+
email:
|
|
29
|
+
- rpeev@ymail.com
|
|
29
30
|
executables: []
|
|
30
31
|
extensions: []
|
|
31
32
|
extra_rdoc_files: []
|
|
32
33
|
files:
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
- lib/ffi-wingui-core/kernel32.rb
|
|
37
|
-
- lib/ffi-wingui-core/libc.rb
|
|
38
|
-
- lib/ffi-wingui-core/user32.rb
|
|
34
|
+
- LICENSE
|
|
35
|
+
- README.md
|
|
36
|
+
- RELNOTES.md
|
|
39
37
|
- examples/Command.rbw
|
|
40
38
|
- examples/Hello.rbw
|
|
41
39
|
- examples/HelloOptout.rbw
|
|
@@ -53,9 +51,16 @@ files:
|
|
|
53
51
|
- examples/Scribble.rbw
|
|
54
52
|
- examples/WndExtra.rbw
|
|
55
53
|
- examples/res/face-devilish.bmp
|
|
56
|
-
-
|
|
57
|
-
|
|
58
|
-
|
|
54
|
+
- lib/ffi-wingui-core.rb
|
|
55
|
+
- lib/ffi-wingui-core/common.rb
|
|
56
|
+
- lib/ffi-wingui-core/gdi32.rb
|
|
57
|
+
- lib/ffi-wingui-core/kernel32.rb
|
|
58
|
+
- lib/ffi-wingui-core/libc.rb
|
|
59
|
+
- lib/ffi-wingui-core/user32.rb
|
|
60
|
+
- screenshot.png
|
|
61
|
+
homepage: https://github.com/rpeev/ffi-wingui-core
|
|
62
|
+
licenses:
|
|
63
|
+
- MIT
|
|
59
64
|
metadata: {}
|
|
60
65
|
post_install_message:
|
|
61
66
|
rdoc_options: []
|
|
@@ -63,18 +68,18 @@ require_paths:
|
|
|
63
68
|
- lib
|
|
64
69
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
65
70
|
requirements:
|
|
66
|
-
- -
|
|
71
|
+
- - ">="
|
|
67
72
|
- !ruby/object:Gem::Version
|
|
68
73
|
version: '0'
|
|
69
74
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
75
|
requirements:
|
|
71
|
-
- -
|
|
76
|
+
- - ">="
|
|
72
77
|
- !ruby/object:Gem::Version
|
|
73
78
|
version: '0'
|
|
74
79
|
requirements: []
|
|
75
80
|
rubyforge_project:
|
|
76
|
-
rubygems_version: 2.
|
|
81
|
+
rubygems_version: 2.5.2
|
|
77
82
|
signing_key:
|
|
78
83
|
specification_version: 4
|
|
79
|
-
summary: Ruby-FFI bindings to essential GUI-related Windows APIs
|
|
84
|
+
summary: Ruby-FFI (x86) bindings to essential GUI-related Windows APIs
|
|
80
85
|
test_files: []
|