weather_finder 0.1.3 → 0.1.4

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
  SHA1:
3
- metadata.gz: 4c6673ccdf84278ddcfbc32e88a349f07f8ada1f
4
- data.tar.gz: 500782a36dc98cd21d047e797cefc09b3ab0f0d2
3
+ metadata.gz: 95ce3a3bb226ae94b5d3fcd5d08b2f32f94a237a
4
+ data.tar.gz: c1502a0bcd7414d66fcedff118f688ee036a189a
5
5
  SHA512:
6
- metadata.gz: abda501276e378322137ed75b6bd901ca31cab7f79b7a70284449d26fc204c4be5f6d8e5ef795daabd393f70be66ed999c5ec16e1342cfe0bfc01f192b1e4a91
7
- data.tar.gz: 2257d95a106faa9529ecb82e54ae1f49585e3d20003ab7103957d3f5ffa431d09b78fe07519f2e2d0e3756d8b03f333617595864d8e5780036d10030da9ac610
6
+ metadata.gz: 0d69c281175b2fd3de171775a3ee642fdd01a7dba858527b050f758a0e7488efefe679cc15edaf318bd7b3412e87741c8f99d1fbdfb751f227dec34df4f587f3
7
+ data.tar.gz: 727c539f37e1e3c2a45fc97c4bacee6569b68d237d9c59a6daae427575c19d375220756abf0bf88e6382ce3b0e7dbf223d4797dabac14a6bab87956f6511fd5e
@@ -51,7 +51,7 @@ class WeatherFinder::CLI
51
51
  def weather_ten_day(zip_code)
52
52
 
53
53
  ten_day_weather = WeatherFinder::Scrapper.ten_day_weather(zip_code)
54
-
54
+
55
55
  puts "------------------------------------------------------------------------"
56
56
  ten_day_weather.each do |row|
57
57
  print "Day:#{row[0]} "
@@ -99,7 +99,7 @@ class WeatherFinder::CLI
99
99
  def zip_code?(zip_code) #takes all zip codes and compares them to given zip
100
100
  valid = false
101
101
 
102
- File.open("../weather_finder/lib/weather_finder/all_usa_zip.txt").each do |zip| #read from file to test valid zip
102
+ File.open("./lib/weather_finder/all_usa_zip.txt").each do |zip| #read from file to test valid zip
103
103
  if zip.to_i == zip_code.to_i
104
104
  valid = true
105
105
  end
@@ -1,3 +1,3 @@
1
1
  module WeatherFinder
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: weather_finder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - "'Justin Tooley'"