nexpose 0.0.98 → 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 CHANGED
@@ -1,20 +1,21 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nexpose
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.98
4
+ version: 0.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - HD Moore
9
9
  - Chris Lee
10
+ - Michael S. Daines
10
11
  autorequire:
11
12
  bindir: bin
12
13
  cert_chain: []
13
- date: 2012-07-13 00:00:00.000000000Z
14
+ date: 2012-12-21 00:00:00.000000000 Z
14
15
  dependencies:
15
16
  - !ruby/object:Gem::Dependency
16
17
  name: librex
17
- requirement: &20950272 !ruby/object:Gem::Requirement
18
+ requirement: !ruby/object:Gem::Requirement
18
19
  none: false
19
20
  requirements:
20
21
  - - ! '>='
@@ -22,10 +23,15 @@ dependencies:
22
23
  version: 0.0.32
23
24
  type: :runtime
24
25
  prerelease: false
25
- version_requirements: *20950272
26
+ version_requirements: !ruby/object:Gem::Requirement
27
+ none: false
28
+ requirements:
29
+ - - ! '>='
30
+ - !ruby/object:Gem::Version
31
+ version: 0.0.32
26
32
  - !ruby/object:Gem::Dependency
27
33
  name: rex
28
- requirement: &20949996 !ruby/object:Gem::Requirement
34
+ requirement: !ruby/object:Gem::Requirement
29
35
  none: false
30
36
  requirements:
31
37
  - - ! '>='
@@ -33,36 +39,44 @@ dependencies:
33
39
  version: 1.0.2
34
40
  type: :runtime
35
41
  prerelease: false
36
- version_requirements: *20949996
37
- description: This gem provides a Ruby API to the NeXpose vulnerability management
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: 1.0.2
48
+ description: This gem provides a Ruby API to the Nexpose vulnerability management
38
49
  product by Rapid7.
39
50
  email:
40
51
  - hdm@metasploit.com
41
52
  - christopher_lee@rapid7.com
53
+ - michael_daines@rapid7.com
42
54
  executables: []
43
55
  extensions: []
44
56
  extra_rdoc_files:
45
57
  - README.markdown
46
58
  files:
47
- - nexpose.gemspec
48
- - Rakefile
49
- - README
50
59
  - README.markdown
51
- - lib/nexpose/api_request.rb
52
- - lib/nexpose/connection.rb
60
+ - Rakefile
61
+ - lib/nexpose.rb
62
+ - lib/nexpose/ticket.rb
63
+ - lib/nexpose/common.rb
64
+ - lib/nexpose/scan_engine.rb
53
65
  - lib/nexpose/creds.rb
54
- - lib/nexpose/error.rb
55
- - lib/nexpose/misc.rb
56
- - lib/nexpose/report.rb
66
+ - lib/nexpose/api_request.rb
67
+ - lib/nexpose/role.rb
68
+ - lib/nexpose/manage.rb
57
69
  - lib/nexpose/scan.rb
58
- - lib/nexpose/scan_engine.rb
59
- - lib/nexpose/silo.rb
70
+ - lib/nexpose/report.rb
71
+ - lib/nexpose/vuln.rb
72
+ - lib/nexpose/util.rb
60
73
  - lib/nexpose/site.rb
61
- - lib/nexpose/ticket.rb
74
+ - lib/nexpose/silo.rb
62
75
  - lib/nexpose/user.rb
63
- - lib/nexpose/util.rb
64
- - lib/nexpose/vuln.rb
65
- - lib/nexpose.rb
76
+ - lib/nexpose/connection.rb
77
+ - lib/nexpose/misc.rb
78
+ - lib/nexpose/error.rb
79
+ - lib/README.md
66
80
  homepage: https://github.com/rapid7/nexpose-client
67
81
  licenses:
68
82
  - BSD
@@ -84,8 +98,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
98
  version: '0'
85
99
  requirements: []
86
100
  rubyforge_project:
87
- rubygems_version: 1.8.17
101
+ rubygems_version: 1.8.24
88
102
  signing_key:
89
103
  specification_version: 3
90
- summary: Ruby API for Rapid7 NeXpose
104
+ summary: Ruby API for Rapid7 Nexpose
91
105
  test_files: []
data/README DELETED
File without changes
@@ -1,20 +0,0 @@
1
- # encoding: utf-8
2
-
3
- Gem::Specification.new do |s|
4
- s.name = "nexpose"
5
- s.version = "0.0.98"
6
- s.homepage = "https://github.com/rapid7/nexpose-client"
7
- s.summary = "Ruby API for Rapid7 NeXpose"
8
- s.description = "This gem provides a Ruby API to the NeXpose vulnerability management product by Rapid7."
9
- s.license = "BSD"
10
- s.authors = ["HD Moore", "Chris Lee"]
11
- s.email = ["hdm@metasploit.com", "christopher_lee@rapid7.com"]
12
- s.files = Dir['[A-Z]*'] + Dir['lib/**/*']
13
- s.require_paths = ["lib"]
14
- s.extra_rdoc_files = ["README.markdown"]
15
- s.required_ruby_version = ">= 1.8.7"
16
- s.platform = "ruby"
17
-
18
- s.add_dependency("librex", ">= 0.0.32")
19
- s.add_dependency("rex", ">= 1.0.2")
20
- end