Created
September 25, 2012 16:41
-
-
Save ymek/3783034 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| def get_names_dates_and_urls | |
| data = {} | |
| self.full_match_file.tap { |info| data[info[:date]] = info if should_process_file?(info[:date]) } | |
| get_incremental_names_dates_and_urls.each { |info| data[info[:date]] = info if should_process_file?(info[:date]) } | |
| data | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment