Class: AppCommand::Scan

Inherits:
Convoy::ActionCommand::Base
  • Object
show all
Defined in:
lib/routes/scan.rb

Instance Method Summary collapse

Instance Method Details

#executeObject



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/routes/scan.rb', line 5

def execute

    begin

        @opts = command_options
        @args = arguments

        opts_validate
        opts_routing

    rescue => e

        Blufin::Terminal::print_exception(e)

    end

end

#opts_routingObject

Raises:

  • (RuntimeError)


27
28
29
30
31
32
33
34
35
36
37
# File 'lib/routes/scan.rb', line 27

def opts_routing

    projects = Blufin::Projects.get_projects_as_array(types: [Blufin::Projects::TYPE_QUASAR, Blufin::Projects::TYPE_API_SIMPLE])
    project  = Blufin::Projects.show_project_prompt(projects)

    # TODO - REMOVE
    raise RuntimeError, 'Not yet implemented!'

    @scanner = Blufin::Scanner::new

end

#opts_validateObject



23
24
25
# File 'lib/routes/scan.rb', line 23

def opts_validate

end