class Rotoworld::CLI
Attributes
headline[RW]
impact[RW]
index[RW]
source[RW]
title[RW]
Public Instance Methods
call()
click to toggle source
Begins the Rotoworld
gem by first scraping the data from the site, making Post objects from the data,
and displaying the posts with options to read more, open site, and
# File lib/CLI.rb, line 14 def call space puts "Welcome to Rotoworld NFL - Player News" puts "______________________________________" Rotoworld::Scraper.new.get_posts show_posts puts "Would you like to refresh or exit?" input = gets.strip if input.downcase == "refresh" call elsif input.downcase == "exit" system("clear") puts "Thanks for visiting." sleep(5) end end
show_posts()
click to toggle source
Takes data from the Scraper class that created Post objects. Iterates through the Post all array and displays the post title as well as a brief description of the headline. From there user is promted to view the source or move on, which opens the source in the user’s browser. After viewing the source, user has option to move on, go to ESPN Fantasy Football home page to make trade, or go to DraftKings and make a bet. User can refresh entire program, as well as exit at any time.
# File lib/CLI.rb, line 37 def show_posts puts "Here are the most recent updates!" puts "Type refresh at any time to refresh the newsfeed!" puts "___________________________________" sleep(5) Rotoworld::Post.all.each do |post| system("clear") puts "----------------------------------" puts post.index.to_s + ". " + post.title puts "----------------------------------" puts post.headline puts "" puts "" ###Prompt to view more on the site puts "Would you like to read more? (y/n) " input = gets.strip if input.downcase == "yes" || input.downcase == "y" puts "" puts "" puts post.impact puts "" puts "" ##### Source Prompt puts "Would you like to view the source? (y/n) " input2 = gets.strip if input2.downcase == "yes" || input2.downcase == "y" if post.source != nil Launchy.open(post.source.strip) sleep(5) puts ### ESPN Fantasy Football or Draftkings Prompt puts "Would you like to move on or exit? Or type fantasy to make a trade! Or type bet to go to DraftKings!" input3 = gets.strip if input3.downcase == "exit" break elsif input3.downcase == "fantasy" Launchy.open("http://games.espn.go.com/frontpage/football") elsif input3.downcase == "bet" Launchy.open("https://www.draftkings.com/") elsif input3.downcase == "move on" nil elsif input3.downcase == "refresh" call else nil end else puts "Source does not exist. Would you like to move on or exit? Or type fantasy to make a trade! Or type bet to go to DraftKings!" input3 = gets.strip if input3.downcase == "exit" break elsif input3.downcase == "fantasy" Launchy.open("http://games.espn.go.com/frontpage/football") elsif input3.downcase == "bet" Launchy.open("https://www.draftkings.com/") elsif input3.downcase == "move on" nil elsif input3.downcase == "refresh" call else nil end end elsif input2.downcase == "refresh" call elsif input2.downcase == "exit" break end elsif input.downcase == "n" || input.downcase == "no" nil elsif input.downcase == "refresh" call elsif input.downcase == "exit" break else nil end end end
space()
click to toggle source
Creates blank space for aesthetic appeal
# File lib/CLI.rb, line 125 def space 20.times do puts "" end end