Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Txml integration #182

Merged
merged 4 commits into from
Aug 7, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
adding status for integration
  • Loading branch information
sgreen-r7 committed Aug 4, 2015
commit b4596f6f2256e73b8bb60d6fe80aa196fc4c3fac
17 changes: 9 additions & 8 deletions lib/nexpose/scan.rb
Original file line number Diff line number Diff line change
Expand Up @@ -692,14 +692,15 @@ def self.parse(xml)
# returned by a #scan_status call.
#
module Status
RUNNING = 'running'
FINISHED = 'finished'
ABORTED = 'aborted'
STOPPED = 'stopped'
ERROR = 'error'
PAUSED = 'paused'
DISPATCHED = 'dispatched'
UNKNOWN = 'unknown'
RUNNING = 'running'
FINISHED = 'finished'
ABORTED = 'aborted'
STOPPED = 'stopped'
ERROR = 'error'
PAUSED = 'paused'
DISPATCHED = 'dispatched'
UNKNOWN = 'unknown'
INTEGRATING = 'integrating'
end
end

Expand Down