Class: Runner
- Inherits:
-
Object
- Object
- Runner
- Defined in:
- lib/runner.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.keywords ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/runner.rb', line 3 def self.keywords { "mnh" => "Manhattan", "brk" => "Brooklyn", "que" => "Queens", "brx" => "The Bronx", "stn" => "Staten Island", "jsy" => "New Jersey", "lgi" => "Long Island", "wch" => "Westchester", "fct" => "Fairfield", "nyc" => "New York City", } end |
Instance Method Details
#exit ⇒ Object
81 82 83 |
# File 'lib/runner.rb', line 81 def exit puts "Thanks for using AfterMarket Research! Go get that surplus value!" end |
#help ⇒ Object
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/runner.rb', line 65 def help puts "Run a craigslist search by including four query terms, as follows:" puts puts "FIRST, the area key -- #{Runner.keywords} " # area_array = keywords.each_with_object([]) {|key, value, array| array << "#{key}: #{value}"} puts puts "NEXT, your actual search. Feel free to format however you like, but please write it in quotes." puts puts "Finally, your minimum and maximum prices, as integers. These will be used to narrow the search." puts puts "Here is a sample search: \"brk 'macbook pro' 200 800\" " puts puts "Hit 'enter' to continue." gets end |
#interface ⇒ Object
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/runner.rb', line 18 def interface on = true while on do puts "=======================================" puts "Hello! Welcome to AfterMarket Research." puts puts "Please enter your query in the following format:" puts "[location keyword] [product query] [min price] [max price]" puts puts "(Type 'help' for more information, and type 'exit' to exit)" raw_user_command = gets.chomp.downcase query = Query.new.parse(raw_user_command) # binding.pry if query.valid_query? puts "running search..." puts scraper = Scraper.new(query) scraper.scrape if scraper.product_rows.length > 0 analyzer = Analyzer.new(scraper.number_extraction) analyzer.print_calculations # puts # puts "Would you like to see your search results? (Y/n)" # to_web = gets.chomp.downcase # if to_web == "y" # binding.pry # scraper.open_url # end else puts "Sorry, your search returned no results." end elsif query.keyword == "help" help elsif query.keyword == "exit" exit on = false else puts "Invalid Query! Please try again. Hit 'enter' to continue." gets "Invalid Query" end end end |