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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 50bf47a70e60da858f023362d5f21f7adf3c4826
4
- data.tar.gz: 2360880b851d7fb4ef935e470f070c7cb3b29e22
3
+ metadata.gz: 0cbeda57b1a10c5a66bee6eefd71882317945703
4
+ data.tar.gz: 929bd3f19fb284a841cd66102c57c8cd497b34a8
5
5
  SHA512:
6
- metadata.gz: 2807c4300c92af12cc8f0718e4f83883e17aff87fe5fc853a74e9e28f96e3f2274e3d851315dee0be37676a544367f55de5728446bbd9d3f8af88c72dde2a583
7
- data.tar.gz: 28c95e70b0d8cc06815c14bba217c1e5e52a40fe49c542e7e7f7d474c67381db359796ae9489a5f488bacae69b8aa0be7ba1f49537359de7875c91e7bd307584
6
+ metadata.gz: f71e3f89da3f4a5ecd63434d555fc43a3ecfe08de1d3e61eec43153a3b1ac502725d167072113fa18c20f8fddfe0852e1a90675df12453d8a143c35db24122eb
7
+ data.tar.gz: e23136dbbf4d5770d8120849c8e55d9bb99341544ff2b77cb41572454aa3894d08a837fc07abfac0b6adf86e3cb8fb81753bc23ba7dc9da9bfa8dbfbef4f3a6f
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License
2
2
 
3
- Copyright (c) 2011-2013 Radoslav Peev
3
+ Copyright (c) 2017 Radoslav Peev
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -0,0 +1,13 @@
1
+ # ffi-wingui-core
2
+
3
+ Ruby-FFI (x86) bindings to essential GUI-related Windows APIs
4
+
5
+ ![Screenshot](./screenshot.png)
6
+
7
+ ## Install
8
+
9
+ gem install ffi-wingui-core
10
+
11
+ ## Use
12
+
13
+ See examples folder
@@ -0,0 +1,5 @@
1
+ # Release Notes
2
+
3
+ ## 1.0.2
4
+
5
+ Recover source from gem
@@ -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
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.1
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: 2013-06-27 00:00:00.000000000 Z
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.0'
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.0'
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
- - lib/ffi-wingui-core.rb
34
- - lib/ffi-wingui-core/common.rb
35
- - lib/ffi-wingui-core/gdi32.rb
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
- - LICENSE
57
- homepage: http://github.com/rpeev/ffi-wingui-core
58
- licenses: []
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.0.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: []