newegg_scraper_chsbr 0.2.3 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f34ca8fd0dbc560e05743c291654c9bdd092cc8c30c534978898666fdad5eaa3
4
- data.tar.gz: 55eec0e26900218bf9ad0ae8ae37c65863add7639365a3df818ece9625e0aaa9
3
+ metadata.gz: 6a1b81329b2a7b6d81d367cb748a541aadf7ec20bc5e6de1cb4d3a213272d0f2
4
+ data.tar.gz: f0db86150303b05d41ba55e7e7e9da56a0c5b4517d7e18e2d8f7e297cf35171d
5
5
  SHA512:
6
- metadata.gz: b50c23b2586cb80492649ed42cfce04f1f1e099baa4d99ddf9539fcfd0b66013f989e47ed56fd2a6f2fc0f9fe8428a338ac6e5d0b16acd993acb6fc8c06f39a9
7
- data.tar.gz: 1bf45a023b6508aa5c2bd90996928291667945e4c6e588c7776da5f5dbc6232e684f9f598fbc865b605d4fd9054d97b808fdb08554497c59e895297bb9d45b24
6
+ metadata.gz: 3f181080b9900c467cbc954c7174aee44515cdab8f7261007a3cf5a1716334d8c7e6f9d6941d4b56a47e72d3e8a7c507ae10b93e060af63fb491e5e53da13a67
7
+ data.tar.gz: 0cfa7c6ef87a6af288baa2011fc8f0d9ed19669c06604cbc4dbdcd70febe493862c7f00501807e5dec9298a26411a9778be6beb14f2cd3afe9caf34504335e34
data/bin/newegg_scraper CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require_relative "../lib/environment.rb"
4
- NeweggScraperChsbr::CLI.new.call
4
+ NeweggScraperChsbr::Cli.new.call
@@ -1,4 +1,4 @@
1
- class NeweggScraperChsbr::CLI
1
+ class NeweggScraperChsbr::Cli
2
2
  attr_reader :user
3
3
  def initialize
4
4
  NeweggScraperChsbr::DataGrabber.new
@@ -19,11 +19,13 @@ class NeweggScraperChsbr::CLI
19
19
  get_init_data_for_user
20
20
  printed_cpus = NeweggScraperChsbr::Cpu.display_cpu(@user)
21
21
 
22
-
23
- @user.choose_cpu(printed_cpus)
22
+ if printed_cpus.size != 0
23
+ @user.choose_cpu(printed_cpus)
24
+ NeweggScraperChsbr::Cpu.display_cpu_with_extras(@user)
25
+ end
24
26
 
25
27
 
26
- NeweggScraperChsbr::Cpu.display_cpu_with_extras(@user)
28
+
27
29
  puts "If you would like to restart the program please enter : #{@counter}.\nTo exit type n or exit."
28
30
  @counter = gets.strip
29
31
  corr_input = control_bool
@@ -125,4 +127,35 @@ class NeweggScraperChsbr::CLI
125
127
  end
126
128
 
127
129
  end
130
+ # def choose_cpu(printed_cpus)
131
+ # puts "Please enter the number of the CPU you'd like to see more about."
132
+ # chosen = gets.strip
133
+ # while !is_numeric?(chosen)
134
+ # puts "Please enter the number of the CPU you'd like to see more about."
135
+ # chosen = gets.strip
136
+ # end
137
+ # if !printed_cpus.include?(chosen.to_i)
138
+ # puts "You chose a CPU outside of your budget please choose another."
139
+ # choose_cpu(printed_cpus)
140
+ # end
141
+ # @user.chosen_cpu << chosen.to_i
142
+ # puts "Would you like to see more about another CPU?\nEnter y to do so.\nEnter n to see details about the chosen CPU(s)"
143
+ # input = gets.strip
144
+
145
+ # if input == 'y'
146
+ # choose_cpu(printed_cpus)
147
+ # end
148
+
149
+ # end
150
+ # def is_numeric?(obj)
151
+ # obj.match(/\A[^+-]?\d+?(\^.\d+)?\Z/) == nil ? false : true
152
+ # end
153
+ # def self.display_cpu_with_extras(user)
154
+
155
+ # user.chosen_cpu.each do | chosen_cpu |
156
+
157
+ # puts "\n\n\n#{NeweggScraperChsbr::Cpu.all[chosen_cpu - 1].name.name}\nHas a price of: #{NeweggScraperChsbr::Cpu.all[chosen_cpu - 1].price.price}\nShipping: #{NeweggScraperChsbr::Cpu.all[chosen_cpu - 1].shipping.price}\n\n Descriptive Points:\n"
158
+ # NeweggScraperChsbr::Cpu.all[chosen_cpu - 1].printDesc
159
+ # end
160
+ # end
128
161
  end
@@ -59,13 +59,14 @@ class NeweggScraperChsbr::Cpu
59
59
  puts("\n #{counter}:\n Name: #{computer.name.name}\n Price: #{computer.price.price}")
60
60
  printed_cpus << counter
61
61
 
62
- elsif printed_cpus.size == 0
63
- puts "You did not match any CPU criteria."
64
62
  end
65
63
 
66
64
  counter += 1
67
65
 
68
66
  end
67
+ if printed_cpus.size == 0
68
+ puts "You did not match any CPU criteria."
69
+ end
69
70
  printed_cpus
70
71
 
71
72
  end
@@ -70,7 +70,7 @@ class NeweggScraperChsbr::DataGrabber
70
70
  end
71
71
  end
72
72
  def isCoolerOrMB?(name)
73
- name.include?("Water") || name.include?("Air") || name.include?("Motherboard") || name.include?("AIO") || name.include?("FLY")
73
+ name.include?("Water") || name.include?("Air") || name.include?("Motherboard") || name.include?("AIO") || name.include?("FLY") || name.include?("Cooler")
74
74
  end
75
75
  def getPrice
76
76
  scraped_info = NeweggScraperChsbr::Scraper.new
@@ -117,7 +117,7 @@ class NeweggScraperChsbr::DataGrabber
117
117
  prices.each_with_index do | price, index |
118
118
 
119
119
  if !isCoolerOrMB?(names[index])
120
- cpus << NeweggScraperChsbr::Cpu.new(names[index], price, shipping[index], desc_hash[index])
120
+ cpus << NeweggScraperChsbr::Cpu.new(names[index], prices[index - 1], shipping[index], desc_hash[index])
121
121
 
122
122
  end
123
123
  end
@@ -7,6 +7,7 @@ class NeweggScraperChsbr::User
7
7
  @max_price = max_price
8
8
  @chosen_cpu = []
9
9
  end
10
+
10
11
  def choose_cpu(printed_cpus)
11
12
  puts "Please enter the number of the CPU you'd like to see more about."
12
13
  chosen = gets.strip
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NeweggScraperChsbr
4
- VERSION = "0.2.3"
4
+ VERSION = "0.2.5"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: newegg_scraper_chsbr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lrd134