Sha256: 8f778d875a7a8957a0de18ed8416cf15988e7a4ed7993afd294e9ec6e5688f83

Contents?: true

Size: 502 Bytes

Versions: 30

Compression:

Stored size: 502 Bytes

Contents

class NexposeTasks < Thor
  include Rails.application.config.dradis.thor_helper_module

  namespace "dradis:plugins:nexpose"

  desc "upload FILE", "upload NeXpose results"
  def upload(file_path)
    require 'config/environment'

    unless File.exists?(file_path)
      $stderr.puts "** the file [#{file_path}] does not exist"
      exit -1
    end

    detect_and_set_project_scope

    importer = Dradis::Plugins::Nexpose::Importer.new(task_options)
    importer.import(file: file_path)
  end

end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
dradis-nexpose-4.13.0 lib/tasks/thorfile.rb
dradis-nexpose-4.11.0 lib/tasks/thorfile.rb
dradis-nexpose-4.10.0 lib/tasks/thorfile.rb
dradis-nexpose-4.9.0 lib/tasks/thorfile.rb
dradis-nexpose-4.8.0 lib/tasks/thorfile.rb
dradis-nexpose-4.7.0 lib/tasks/thorfile.rb
dradis-nexpose-4.6.0 lib/tasks/thorfile.rb
dradis-nexpose-4.5.0 lib/tasks/thorfile.rb
dradis-nexpose-4.4.0 lib/tasks/thorfile.rb
dradis-nexpose-4.3.0 lib/tasks/thorfile.rb
dradis-nexpose-4.2.0 lib/tasks/thorfile.rb
dradis-nexpose-4.1.0 lib/tasks/thorfile.rb
dradis-nexpose-4.0.0 lib/tasks/thorfile.rb
dradis-nexpose-3.22.0 lib/tasks/thorfile.rb
dradis-nexpose-3.21.0 lib/tasks/thorfile.rb
dradis-nexpose-3.20.0 lib/tasks/thorfile.rb
dradis-nexpose-3.19.0 lib/tasks/thorfile.rb
dradis-nexpose-3.18.0 lib/tasks/thorfile.rb
dradis-nexpose-3.17.0 lib/tasks/thorfile.rb
dradis-nexpose-3.16.0 lib/tasks/thorfile.rb