unknownr 0.2.1 → 0.2.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.
Files changed (6) hide show
  1. checksums.yaml +15 -0
  2. data/LICENSE +1 -1
  3. data/README.md +11 -0
  4. data/RELNOTES.md +5 -0
  5. data/lib/unknownr.rb +6 -0
  6. metadata +43 -60
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MmRiYjhkNTNjMGI5MGE4ODkxMTJjMTFkZDRiOThmODNjNjc0ZGI0MA==
5
+ data.tar.gz: !binary |-
6
+ ZWU0MTY5NGE3NzY5NWEyM2I0MzhmZDk4NjYwM2YyZDg3OWRhZTYyMg==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ MDk3MTVjNWRjYWI2MTJkYWRhMjg3NzU0YWRmY2FkZjViMjU4ZmM4M2UwOWUx
10
+ YWJiY2VhMjNjODhiNTgxNDY3YTg4MDhmOGFiYjI3MmMzNmMzOGM2YmVmMzJl
11
+ ZTU5MzA5ZmJhMWE1ZTU2YmMzM2ExZTdmOWFlZGI3NTVkN2Q5MTM=
12
+ data.tar.gz: !binary |-
13
+ MTBkNjlkMjliYTQ1MWUyMjEyNjFiMmMyNTc1MTc2YWI5YjUxN2M1MTIzMGVk
14
+ OTcyNGI3YmE5N2Y1ZmNjMTI4ODlhMmY2ZmUzNTg1MzQ0MWZhMTRhNTRmMDcz
15
+ OTZjZTNjYzgyNmY0Mzg0N2U0MjcxMTdjMzAwNTIzZTU4YTBmNTU=
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License
2
2
 
3
- Copyright (c) 2010 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
data/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # unknownr
2
+
3
+ Ruby-FFI (x86) bindings to essential COM-related Windows APIs
4
+
5
+ ## Install
6
+
7
+ gem install unknownr
8
+
9
+ ## Use
10
+
11
+ See examples folder
data/RELNOTES.md ADDED
@@ -0,0 +1,5 @@
1
+ # Release Notes
2
+
3
+ ## 0.2.2
4
+
5
+ Recover source from gem
data/lib/unknownr.rb CHANGED
@@ -1,6 +1,8 @@
1
1
  require 'ffi'
2
2
 
3
3
  module Unknownr
4
+ VERSION = '0.2.2'
5
+
4
6
  module Windows
5
7
  extend FFI::Library
6
8
 
@@ -893,3 +895,7 @@ module Unknownr
893
895
  attach_function :DispInvoke, [:pointer, :pointer, :long, :ushort, :pointer, :pointer, :pointer, :pointer], :long
894
896
  end
895
897
  end
898
+
899
+ if __FILE__ == $0
900
+ puts Unknownr::VERSION
901
+ end
metadata CHANGED
@@ -1,80 +1,63 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: unknownr
3
- version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 0
7
- - 2
8
- - 1
9
- version: 0.2.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.2
10
5
  platform: ruby
11
- authors:
6
+ authors:
12
7
  - Radoslav Peev
13
8
  autorequire:
14
9
  bindir: bin
15
10
  cert_chain: []
16
-
17
- date: 2011-01-24 00:00:00 +02:00
18
- default_executable:
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
11
+ date: 2017-01-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
21
14
  name: ffi
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
24
- none: false
25
- requirements:
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
26
17
  - - ~>
27
- - !ruby/object:Gem::Version
28
- segments:
29
- - 1
30
- - 0
31
- - 5
32
- version: 1.0.5
18
+ - !ruby/object:Gem::Version
19
+ version: '1'
33
20
  type: :runtime
34
- version_requirements: *id001
35
- description:
36
- email:
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1'
27
+ description: Ruby-FFI (x86) bindings to essential COM-related Windows APIs
28
+ email:
29
+ - rpeev@ymail.com
37
30
  executables: []
38
-
39
31
  extensions: []
40
-
41
32
  extra_rdoc_files: []
42
-
43
- files:
44
- - lib/unknownr.rb
45
- - examples/DesktopGadget.rbw
33
+ files:
46
34
  - LICENSE
47
- has_rdoc: true
48
- homepage: http://github.com/rpeev/Unknownr
49
- licenses: []
50
-
35
+ - README.md
36
+ - RELNOTES.md
37
+ - examples/DesktopGadget.rbw
38
+ - lib/unknownr.rb
39
+ homepage: https://github.com/rpeev/unknownr
40
+ licenses:
41
+ - MIT
42
+ metadata: {}
51
43
  post_install_message:
52
44
  rdoc_options: []
53
-
54
- require_paths:
45
+ require_paths:
55
46
  - lib
56
- required_ruby_version: !ruby/object:Gem::Requirement
57
- none: false
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- segments:
62
- - 0
63
- version: "0"
64
- required_rubygems_version: !ruby/object:Gem::Requirement
65
- none: false
66
- requirements:
67
- - - ">="
68
- - !ruby/object:Gem::Version
69
- segments:
70
- - 0
71
- version: "0"
47
+ required_ruby_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ! '>='
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ! '>='
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
72
57
  requirements: []
73
-
74
58
  rubyforge_project:
75
- rubygems_version: 1.3.7
59
+ rubygems_version: 2.6.8
76
60
  signing_key:
77
- specification_version: 3
78
- summary: COM support for Ruby-FFI on Windows
61
+ specification_version: 4
62
+ summary: Ruby-FFI (x86) bindings to essential COM-related Windows APIs
79
63
  test_files: []
80
-