Method: WhatToWatch::CLI#initialize

Defined in:
lib/what_to_watch/cli.rb

#initializeCLI

Returns a new instance of CLI.



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/what_to_watch/cli.rb', line 4

def initialize 
 @input = ""
 @streaming_services = {netflix: "n", amazon_prime: "n", hbo_now: "n", hulu: "n", showtime: "n"}
 puts "==========================================" 
 puts %q[
 __        ___           _     _         
 \ \      / / |__   __ _| |_  | |_ ___   
\ \ /\ / /| '_ \ / _` | __| | __/ _ \  
 \ V  V / | | | | (_| | |_  | || (_) | 
 __ \_/\_/ _|_| |_|\__,_|\__|  \__\___/  
 \ \      / /_ _| |_ ___| |__            
\ \ /\ / / _` | __/ __| '_ \           
 \ V  V / (_| | || (__| | | |          
  \_/\_/ \__,_|\__\___|_| |_|          

]
 puts "=========================================="
 puts ""
 puts "Welcome to What To Watch!"
 puts ""
end