Move to data/ directory

This commit is contained in:
Nemo 2018-04-08 23:01:29 +05:30
parent 272053df38
commit a91c242951
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
vendor/
html/
*.csv
*.csv
data/

View File

@ -4,7 +4,7 @@ require 'date'
restaurants = []
CSV.open("#{Date.today.to_s}.csv", 'wb') do |csv|
CSV.open("data/#{Date.today.to_s}.csv", 'wb') do |csv|
csv << ['url', 'title', 'location', 'address', 'cuisine']
Dir.glob('html/restaurants-*.html') do |file|
page = Nokogiri::HTML(open(file))