Method: CodeLabs::CLI#call

Defined in:
lib/code_labs/cli.rb

#callObject



2
3
4
5
6
7
8
9
10
11
# File 'lib/code_labs/cli.rb', line 2

def call
    # Warning, looks half decent

    puts "\n----------------------------------------------"
    puts   "---------  Google CodeLabs Browsing CLI  -----"
    puts   "----------------------------------------------"
    puts ""
    CodeLabs::Scraper.new.scrape # <- Scrapes the website

    list_techs # <- shows the initial results

    start # <- starts the CLI

end