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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c4afa531ec678cbfa866347937a5156be38299ab
4
- data.tar.gz: 430b9de23891466f94881203026c092ed5d6127d
3
+ metadata.gz: 48c3ee25e5aa975dfb797960ac5f442d174ff665
4
+ data.tar.gz: 86542233200617d91dea2ee56b34723a7a8e0901
5
5
  SHA512:
6
- metadata.gz: eaebe980531b1b1a6080d69e012978d410dbe4f65b430d722f61acce66bcb3876aaf595ae2c87af1b1f9795e05eda90158a8d042975b7d53840a722b323598b9
7
- data.tar.gz: 9ca6c03f12e26ed70ebdb177454d3cad91501a3cc06a9b3f49ff63a00712559464d07bec3673d6a227b804e708dcf42f25bb8682db86953a058518ac710bf0d7
6
+ metadata.gz: e4e630389cb349d81d20f3f6ee0dc9042f74260b30fbb0642658f26e61afe08c9bb64b28c4363099e48c53d8162883b493bf7f8a4de2b3fdd6c6eab0371224a0
7
+ data.tar.gz: 5ef3c0388f1730d1f4633dcd3e4aac3c8e183a83de4a942431f2bc7849dd7a41fa296843aec4d7b65b53e5c530435b5961b9a4b26ddbaab33ce45b503c754bc7
data/.travis.yml ADDED
@@ -0,0 +1,10 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.0
4
+ - 2.0.0
5
+ - 1.9.3
6
+ - 1.9.2
7
+ - 1.8.7
8
+ - jruby-19mode
9
+ - jruby-18mode
10
+ - rbx-19mode
data/HISTORY.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.4.0 (2014-02-26)
2
+
3
+ * Removed some hardcoded values
4
+
1
5
  # 0.3.9 (2014-02-25)
2
6
 
3
7
  * Smarter checking for initialization before execution
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- Sifttter Redux
1
+ Sifttter Redux [![Build Status](https://travis-ci.org/bachya/Sifttter-Redux.png?branch=master)](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.5
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 = '/tmp/sifttter'
201
- DBU.remote_target = '/Apps/ifttt/sifttter'
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
 
@@ -1,3 +1,3 @@
1
1
  module SifttterRedux
2
- VERSION = '0.3.9'
2
+ VERSION = '0.4.0'
3
3
  end
@@ -31,9 +31,9 @@ class CLIMessageTest < Test::Unit::TestCase
31
31
  end
32
32
  end
33
33
 
34
- def test_prompt
35
- assert_equal(SifttterRedux::CLIMessage.prompt('Pick the default option', 'default'), 'default')
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.3.9
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-25 00:00:00.000000000 Z
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