seccomp-ruby 0.1.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.
metadata ADDED
@@ -0,0 +1,75 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: seccomp-ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Yudai Takada
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Low-level and Ruby-friendly APIs for building Linux seccomp filters.
13
+ email:
14
+ - t.yudai92@gmail.com
15
+ executables: []
16
+ extensions:
17
+ - ext/seccomp_ext/extconf.rb
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".rubocop.yml"
21
+ - ".yardopts"
22
+ - LICENSE.txt
23
+ - README.md
24
+ - Rakefile
25
+ - examples/arg_filter.rb
26
+ - examples/basic_allowlist.rb
27
+ - examples/errno_filter.rb
28
+ - examples/notify_supervisor.rb
29
+ - ext/seccomp_ext/const.c
30
+ - ext/seccomp_ext/extconf.rb
31
+ - ext/seccomp_ext/filter.c
32
+ - ext/seccomp_ext/notify.c
33
+ - ext/seccomp_ext/seccomp_ext.c
34
+ - ext/seccomp_ext/seccomp_ext.h
35
+ - ext/seccomp_ext/syscall.c
36
+ - ext/seccomp_ext/util.c
37
+ - lib/libseccomp.rb
38
+ - lib/seccomp.rb
39
+ - lib/seccomp/action.rb
40
+ - lib/seccomp/arch.rb
41
+ - lib/seccomp/arg.rb
42
+ - lib/seccomp/attributes.rb
43
+ - lib/seccomp/dsl.rb
44
+ - lib/seccomp/errors.rb
45
+ - lib/seccomp/filter.rb
46
+ - lib/seccomp/low_level.rb
47
+ - lib/seccomp/notification.rb
48
+ - lib/seccomp/notifier.rb
49
+ - lib/seccomp/syscall.rb
50
+ - lib/seccomp/version.rb
51
+ - sig/seccomp.rbs
52
+ homepage: https://github.com/ydah/seccomp-ruby
53
+ licenses:
54
+ - MIT
55
+ metadata:
56
+ source_code_uri: https://github.com/ydah/seccomp-ruby
57
+ rubygems_mfa_required: 'true'
58
+ rdoc_options: []
59
+ require_paths:
60
+ - lib
61
+ required_ruby_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: 3.1.0
66
+ required_rubygems_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ requirements: []
72
+ rubygems_version: 4.0.19
73
+ specification_version: 4
74
+ summary: Native Ruby bindings for libseccomp
75
+ test_files: []