Last active
August 29, 2015 14:06
-
-
Save muhh/2f1e70ea9b68d6911574 to your computer and use it in GitHub Desktop.
get dones from dayone created in the last 24 hours
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
| require 'rb-dayone' | |
| s = DayOne::Search.new do | |
| creation_date.after Time.now - (24*60*60) | |
| tag.include "done" | |
| end | |
| s.results.each do |entry| | |
| entry.entry_text.slice! "#done" | |
| puts entry.entry_text | |
| puts "----\n" | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment