Created
August 25, 2015 12:00
-
-
Save masui/2fc4348b81e75c801703 to your computer and use it in GitHub Desktop.
Gyazo1
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
id = ARGV[0] | |
time = ARGV[1] | |
url = ARGV[2] | |
exit unless id && time && url | |
time = time.gsub(/_/,' ') | |
d = Image.find_by(image_id: id) | |
d.date = Time.zone.parse(time).utc | |
d.metadata = { 'url' => url } | |
d.update | |
p d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment