winevt_c 0.5.1 → 0.6.0
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/.clang-format +5 -0
- data/README.md +2 -2
- data/example/rate_limit.rb +14 -0
- data/ext/winevt/extconf.rb +2 -2
- data/ext/winevt/winevt_bookmark.c +44 -39
- data/ext/winevt/winevt_c.h +42 -26
- data/ext/winevt/winevt_channel.c +43 -29
- data/ext/winevt/winevt_query.c +140 -92
- data/ext/winevt/winevt_subscribe.c +214 -89
- data/ext/winevt/winevt_utils.cpp +540 -335
- data/lib/winevt/version.rb +1 -1
- data/winevt_c.gemspec +1 -1
- metadata +5 -3
data/lib/winevt/version.rb
CHANGED
data/winevt_c.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
|
12
12
|
spec.summary = %q{Windows Event Log API bindings from winevt.h.}
|
13
13
|
spec.description = spec.summary
|
14
|
-
spec.homepage = "https://github.com/
|
14
|
+
spec.homepage = "https://github.com/fluent-plugins-nursery/winevt_c"
|
15
15
|
|
16
16
|
# Specify which files should be added to the gem when it is released.
|
17
17
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: winevt_c
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hiroshi Hatake
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -94,6 +94,7 @@ extensions:
|
|
94
94
|
- ext/winevt/extconf.rb
|
95
95
|
extra_rdoc_files: []
|
96
96
|
files:
|
97
|
+
- ".clang-format"
|
97
98
|
- ".gitignore"
|
98
99
|
- Gemfile
|
99
100
|
- LICENSE.txt
|
@@ -104,6 +105,7 @@ files:
|
|
104
105
|
- bin/setup
|
105
106
|
- example/bookmark.rb
|
106
107
|
- example/eventlog.rb
|
108
|
+
- example/rate_limit.rb
|
107
109
|
- example/tailing.rb
|
108
110
|
- ext/winevt/extconf.rb
|
109
111
|
- ext/winevt/winevt.c
|
@@ -118,7 +120,7 @@ files:
|
|
118
120
|
- lib/winevt/subscribe.rb
|
119
121
|
- lib/winevt/version.rb
|
120
122
|
- winevt_c.gemspec
|
121
|
-
homepage: https://github.com/
|
123
|
+
homepage: https://github.com/fluent-plugins-nursery/winevt_c
|
122
124
|
licenses:
|
123
125
|
- Apache-2.0
|
124
126
|
metadata: {}
|