sifttter-redux 0.3.6 → 0.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/HISTORY.md +4 -0
- data/README.md +8 -4
- data/lib/sifttter_redux/sifttter.rb +1 -1
- data/lib/sifttter_redux/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 13c23c7765b3f89eeb6fc02bc93b3b825fee5850
|
|
4
|
+
data.tar.gz: 85176505e850dd37b3d9fa3c111d08e4a3d73810
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a39f012561aef02e15f31171467f593290b581a613fc3c7884340c77831aff3cec50ec676945a4becd779e63825e86c4d083f0d21ad4fdc910efdf33b1c73d6e
|
|
7
|
+
data.tar.gz: 3cf86d715dc7598ed4c8b3f10fd74c800d4f9aef6f416aa78790320fe7e4fb521ac8aa8e015c79bea5eb7608e7d6bd320f53f6ee95544b78069ad704fa64b0c8
|
data/HISTORY.md
CHANGED
data/README.md
CHANGED
|
@@ -3,9 +3,12 @@ Sifttter Redux
|
|
|
3
3
|
|
|
4
4
|
Siftter Redux is a modification of Craig Eley's [Sifttter](http://craigeley.com/post/72565974459/sifttter-an-ifttt-to-day-one-logger "Sifttter"), a script to collect information from [IFTTT](http://www.ifttt.com "IFTTT") and place it in a [Day One](http://dayoneapp.com, "Day One") journal.
|
|
5
5
|
|
|
6
|
-
Siftter Redux
|
|
6
|
+
Siftter Redux has several fundamental differences:
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
* Interactive logging of today's events or events in the past
|
|
9
|
+
* "Catch Up" mode for logging several days' events at once
|
|
10
|
+
* Packaged as a command line app, complete with documentation and help
|
|
11
|
+
* Easy installation on cron for automated running
|
|
9
12
|
|
|
10
13
|
# Prerequisites
|
|
11
14
|
|
|
@@ -360,9 +363,9 @@ See [Chronic's Examples section](https://github.com/mojombo/chronic#examples "Ch
|
|
|
360
363
|
|
|
361
364
|
# Cron Job
|
|
362
365
|
|
|
363
|
-
By installing an entry to
|
|
366
|
+
By installing an entry to a `crontab`, Sifttter Redux can be run automatically on a schedule. The aim of this project was to use a Raspberry Pi; as such, the instructions below are specifically catered to that platform. That said, it should be possible to install and configure on any *NIX platform.
|
|
364
367
|
|
|
365
|
-
One issue that arises is the loading of the bundled gems; because
|
|
368
|
+
One issue that arises is the loading of the bundled gems; because cron runs in a limited environment, it does not automatically know where to find installed gems.
|
|
366
369
|
|
|
367
370
|
## Using RVM
|
|
368
371
|
|
|
@@ -384,6 +387,7 @@ $ bundle install --global
|
|
|
384
387
|
|
|
385
388
|
* Sifttter Redux makes no effort to see if entries already exist in Day One for a particular date. This means that if you're not careful, you might end up with duplicate entries. A future version will address this.
|
|
386
389
|
* Multiline updates aren't caught by Sifttter Redux; it counts on content being on single lines.
|
|
390
|
+
* If the contents of `~/.dropbox_uploader` should ever be incorrect, Sifttter Redux fails without warning. Working on a fix, but it's slow-going.
|
|
387
391
|
|
|
388
392
|
# Future Releases
|
|
389
393
|
|
|
@@ -5,7 +5,7 @@ module SifttterRedux
|
|
|
5
5
|
# Wrapper module for Sifttter itself
|
|
6
6
|
# ======================================================
|
|
7
7
|
module Sifttter
|
|
8
|
-
|
|
8
|
+
include SifttterRedux::OS
|
|
9
9
|
|
|
10
10
|
# ----------------------------------------------------
|
|
11
11
|
# run_sifttter method
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sifttter-redux
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aaron Bach
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-02-
|
|
11
|
+
date: 2014-02-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|