zaproxy 0.0.1

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 (5) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +3 -0
  3. data/lib/zap.rb +8 -0
  4. data/zaproxy.gemspec +30 -0
  5. metadata +48 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 57955bce7ccfe3d6bbf2d6466fbf2013bed147bed70c664059586623ce09274b
4
+ data.tar.gz: 9ed1916b65f666700fe5326ebc92261346708318575d99bccc3d0024ba62c6b9
5
+ SHA512:
6
+ metadata.gz: c1f0f36146d9994c8d5e28076b6ca315521d36fea187c2681268689e31996a1e992089f7d3f71b4c18847ac5b12a70b1d19c25751a5a8717515a2ea03b9eae59
7
+ data.tar.gz: 82cff2f12de003e5c1ca1a32897265595d0b5541e07ca1dd5ea8914cad3a42e7d7ca6cebe9fc94b5758b238ef825a0ffc99afebaaf6d01563d5527e08567b6cd
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # zaproxy-ruby
2
+
3
+ The unofficial Ruby implementation to access the [ZAP API](https://www.zaproxy.org/docs/api/#introduction).
data/lib/zap.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ # ZAP Class
4
+ class ZAP
5
+ def initialize
6
+ puts 'ZAP API for Ruby'
7
+ end
8
+ end
data/zaproxy.gemspec ADDED
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = 'zaproxy'
5
+ spec.version = '0.0.1'
6
+ spec.authors = ['hahwul']
7
+ spec.email = ['hahwul@gmail.com']
8
+
9
+ spec.summary = 'ZAP API for Ruby'
10
+ spec.description = 'The unofficial Ruby implementation to access the ZAP API'
11
+ spec.homepage = 'https://github.com/hahwul/zaproxy-ruby'
12
+ spec.required_ruby_version = '>= 2.7.0'
13
+ spec.license = 'MIT'
14
+
15
+ spec.metadata['homepage_uri'] = spec.homepage
16
+ spec.metadata['source_code_uri'] = 'https://github.com/hahwul/zaproxy-ruby'
17
+
18
+ # Specify which files should be added to the gem when it is released.
19
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
20
+ spec.files = Dir.chdir(__dir__) do
21
+ `git ls-files -z`.split("\x0").reject do |f|
22
+ (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
23
+ end
24
+ end
25
+
26
+ spec.require_paths = ['lib']
27
+
28
+ # Uncomment to register a new dependency of your gem
29
+ # spec.add_dependency "example-gem", "~> 1.0"
30
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zaproxy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - hahwul
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-10-29 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: The unofficial Ruby implementation to access the ZAP API
14
+ email:
15
+ - hahwul@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - lib/zap.rb
22
+ - zaproxy.gemspec
23
+ homepage: https://github.com/hahwul/zaproxy-ruby
24
+ licenses:
25
+ - MIT
26
+ metadata:
27
+ homepage_uri: https://github.com/hahwul/zaproxy-ruby
28
+ source_code_uri: https://github.com/hahwul/zaproxy-ruby
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: 2.7.0
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubygems_version: 3.4.10
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: ZAP API for Ruby
48
+ test_files: []