class MarvelMovies::CLI
Public Instance Methods
call()
click to toggle source
# File lib/marvel_movies/cli.rb, line 3 def call list_choices menu end
goodbye()
click to toggle source
# File lib/marvel_movies/cli.rb, line 45 def goodbye puts "" puts "Goodbye and check back later for more Marvel Universe" exit end
list_choices()
click to toggle source
# File lib/marvel_movies/cli.rb, line 8 def list_choices puts "Hello Marvel Fans" puts <<-DOC.gsub /^\s*/, '' 1. Show All Marvel Movies 2. Show Upcoming Marvel Movies 3. Show Marvel Movies Available Now on DVD DOC end