Created
February 28, 2018 15:41
-
-
Save Nursultan91/ccddf0ed65442340d0d18a15a46ee98a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filename = ARGV.first || 'movies.txt' | |
abort("Файл не найден") unless File.exist?(filename) | |
File.readlines(filename).each do |line| | |
movie_hash = Hash[ [:link, :title, :year, :country, :premiere, :genre, :length, :rank, :cast].zip(line.split("|")) ] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment