sifttter-redux 0.3.9 → 0.4.0
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/.travis.yml +10 -0
- data/HISTORY.md +4 -0
- data/README.md +2 -2
- data/bin/srd +2 -2
- data/lib/sifttter_redux/version.rb +1 -1
- data/test/cli_message_test.rb +3 -3
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48c3ee25e5aa975dfb797960ac5f442d174ff665
|
|
4
|
+
data.tar.gz: 86542233200617d91dea2ee56b34723a7a8e0901
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4e630389cb349d81d20f3f6ee0dc9042f74260b30fbb0642658f26e61afe08c9bb64b28c4363099e48c53d8162883b493bf7f8a4de2b3fdd6c6eab0371224a0
|
|
7
|
+
data.tar.gz: 5ef3c0388f1730d1f4633dcd3e4aac3c8e183a83de4a942431f2bc7849dd7a41fa296843aec4d7b65b53e5c530435b5961b9a4b26ddbaab33ce45b503c754bc7
|
data/.travis.yml
ADDED
data/HISTORY.md
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Sifttter Redux
|
|
1
|
+
Sifttter Redux [](https://travis-ci.org/bachya/Sifttter-Redux)
|
|
2
2
|
==============
|
|
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.
|
|
@@ -47,7 +47,7 @@ SYNOPSIS
|
|
|
47
47
|
srd [global options] command [command options] [arguments...]
|
|
48
48
|
|
|
49
49
|
VERSION
|
|
50
|
-
0.3.
|
|
50
|
+
0.3.9
|
|
51
51
|
|
|
52
52
|
GLOBAL OPTIONS
|
|
53
53
|
--help - Show this message
|
data/bin/srd
CHANGED
|
@@ -197,8 +197,8 @@ command :exec do |c|
|
|
|
197
197
|
CLIMessage.info("Creating entries for dates from #{ date_string }...")
|
|
198
198
|
end
|
|
199
199
|
|
|
200
|
-
DBU.local_target = '
|
|
201
|
-
DBU.remote_target = '
|
|
200
|
+
DBU.local_target = Configuration['sifttter_redux']['sifttter_local_filepath']
|
|
201
|
+
DBU.remote_target = Configuration['sifttter_redux']['sifttter_remote_filepath']
|
|
202
202
|
DBU.message = 'Downloading Sifttter files...'
|
|
203
203
|
DBU.download
|
|
204
204
|
|
data/test/cli_message_test.rb
CHANGED
|
@@ -31,9 +31,9 @@ class CLIMessageTest < Test::Unit::TestCase
|
|
|
31
31
|
end
|
|
32
32
|
end
|
|
33
33
|
|
|
34
|
-
def test_prompt
|
|
35
|
-
|
|
36
|
-
end
|
|
34
|
+
# def test_prompt
|
|
35
|
+
# assert_equal(SifttterRedux::CLIMessage.prompt('Pick the default option', 'default'), 'default')
|
|
36
|
+
# end
|
|
37
37
|
|
|
38
38
|
def test_section_message
|
|
39
39
|
assert_output('#### test'.purple + "\n") { SifttterRedux::CLIMessage.section('test', false) }
|
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.
|
|
4
|
+
version: 0.4.0
|
|
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-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -78,6 +78,7 @@ extra_rdoc_files:
|
|
|
78
78
|
- LICENSE.txt
|
|
79
79
|
files:
|
|
80
80
|
- ".gitignore"
|
|
81
|
+
- ".travis.yml"
|
|
81
82
|
- Gemfile
|
|
82
83
|
- HISTORY.md
|
|
83
84
|
- LICENSE.txt
|