sifttter-redux 0.2.1 → 0.2.2
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 +8 -8
- data/HISTORY.md +4 -0
- data/README.md +6 -8
- data/Rakefile +1 -1
- data/lib/{Sifttter-Redux → sifttter-redux}/cli-message.rb +0 -0
- data/lib/{Sifttter-Redux → sifttter-redux}/config-manager.rb +0 -0
- data/lib/{Sifttter-Redux → sifttter-redux}/constants.rb +1 -1
- data/lib/{Sifttter-Redux → sifttter-redux}/date-range-maker.rb +0 -0
- data/lib/{Sifttter-Redux → sifttter-redux}/methods.rb +0 -0
- data/lib/{Sifttter-Redux → sifttter-redux}/os.rb +0 -0
- data/lib/sifttter-redux.rb +6 -0
- data/{Sifttter-Redux.gemspec → sifttter-redux.gemspec} +2 -4
- data/test/catch_up_test.rb +1 -1
- metadata +10 -15
- data/lib/Sifttter-Redux.rb +0 -6
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MjcyOGUyYjBhOTRmYzc5OWVlZmI1ZThhZTZiNTFkOGFmMTNlNDc0YQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NDg4MzBmYzUyYWNhODY5OGZmNTE1ZmRhZDNlYTM3ZGQ0MzZjNGYxMw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NWQyMzIxYjg4YzFkZTMwMWVjOTZkZmQwY2NlYjQ5MzIxN2QxZDQ2MjFlZDdl
|
10
|
+
NjZlNjdlZTJiNjEyMGFlYWY2MjVkMjM1MDg3N2E3Y2FmN2IxMWU3YjgwNGNi
|
11
|
+
ZTQyMGZmZDEzMDg4NDc2Mzg5OWViZjI0ZThiYzEyNzYyZDA5MDE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTk0NDY3YmEzYThmMzBiNmYxNDg3NDc1NTM3OTQ3MzkxNjI0ZGFhZWY3YzI0
|
14
|
+
YzRjM2ZiNjUyNThkMGFjMjE1MThjY2UxM2NmZWQwMjU4YzE3NGQ4NDM5ZDMz
|
15
|
+
NTI5MjIyMjY0ODljYzcxNjkyNGRlZjc0ZjI5NzA4OThhNGQ4MTk=
|
data/HISTORY.md
CHANGED
data/README.md
CHANGED
@@ -9,17 +9,15 @@ The aim of this project was to use a Raspberry Pi; as such, the instructions bel
|
|
9
9
|
|
10
10
|
## Prerequisites
|
11
11
|
|
12
|
-
|
12
|
+
In addition to Git (which, given you being on this site, I'll assume you have), there are two prerequisites needed to run Sifttter Redux in a *NIX environment:
|
13
13
|
|
14
14
|
* Ruby (version 1.9.3 or greater)
|
15
|
-
*
|
16
|
-
* UUID
|
15
|
+
* UUID (required on the Raspberry Pi because it doesn't come with a function to do this by default)
|
17
16
|
|
18
|
-
|
17
|
+
To install on a Debian-esque system:
|
19
18
|
|
20
19
|
```
|
21
20
|
$ sudo apt-get install ruby
|
22
|
-
$ sudo apt-get install git-core
|
23
21
|
$ sudo apt-get install uuid
|
24
22
|
```
|
25
23
|
|
@@ -184,15 +182,15 @@ Some functionality I would like to tackle for future releases:
|
|
184
182
|
|
185
183
|
## Bugs and Feature Requests
|
186
184
|
|
187
|
-
To report bugs with or suggest features/changes for Sifttter Redux, please use the [Issues Page](http://github.com/bachya/
|
185
|
+
To report bugs with or suggest features/changes for Sifttter Redux, please use the [Issues Page](http://github.com/bachya/sifttter-redux/issues).
|
188
186
|
|
189
187
|
Contributions are welcome and encouraged. To contribute:
|
190
188
|
|
191
|
-
* [Fork Sifttter Redux](http://github.com/bachya/
|
189
|
+
* [Fork Sifttter Redux](http://github.com/bachya/sifttter-redux/fork).
|
192
190
|
* Create a branch for your contribution (`git checkout -b new-feature`).
|
193
191
|
* Commit your changes (`git commit -am 'Added this new feature'`).
|
194
192
|
* Push to the branch (`git push origin new-feature`).
|
195
|
-
* Create a new [Pull Request](http://github.com/bachya/
|
193
|
+
* Create a new [Pull Request](http://github.com/bachya/sifttter-redux/compare/).
|
196
194
|
|
197
195
|
## License
|
198
196
|
|
data/Rakefile
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,12 +1,12 @@
|
|
1
1
|
# Ensure we require the local version and not one we might have installed already
|
2
|
-
require File.join([File.dirname(__FILE__),'lib','
|
2
|
+
require File.join([File.dirname(__FILE__), 'lib', 'sifttter-redux', 'constants.rb'])
|
3
3
|
|
4
4
|
spec = Gem::Specification.new do |s|
|
5
5
|
s.name = 'sifttter-redux'
|
6
6
|
s.version = SifttterRedux::VERSION
|
7
7
|
s.author = 'Aaron Bach'
|
8
8
|
s.email = 'bachya1208@gmail.com'
|
9
|
-
s.homepage = 'https://github.com/bachya/
|
9
|
+
s.homepage = 'https://github.com/bachya/sifttter-redux'
|
10
10
|
s.platform = Gem::Platform::RUBY
|
11
11
|
s.summary = 'Automated IFTTT to Day One engine.'
|
12
12
|
s.description = 'Sifttter Redux is a modification of Craig Eley\'s Sifttter that allows for smart installation on a standalone *NIX device (such as a Raspberry Pi).'
|
@@ -20,8 +20,6 @@ spec = Gem::Specification.new do |s|
|
|
20
20
|
s.license = 'MIT'
|
21
21
|
s.rdoc_options = ['--charset=UTF-8']
|
22
22
|
s.extra_rdoc_files = %w[README.md HISTORY.md LICENSE]
|
23
|
-
s.rdoc_options << '--title' << 'Sifttter-Redux' << '--main' << 'README.rdoc' << '-ri'
|
24
|
-
|
25
23
|
|
26
24
|
s.add_development_dependency('rake', '~> 0')
|
27
25
|
s.add_runtime_dependency('chronic', '0.10.2')
|
data/test/catch_up_test.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'date'
|
2
2
|
require 'test_helper'
|
3
|
-
require File.join(File.dirname(__FILE__), '..', 'lib/
|
3
|
+
require File.join(File.dirname(__FILE__), '..', 'lib/sifttter-redux/date-range-maker.rb')
|
4
4
|
|
5
5
|
class DefaultTest < Test::Unit::TestCase
|
6
6
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sifttter-redux
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Bach
|
@@ -83,29 +83,24 @@ files:
|
|
83
83
|
- LICENSE
|
84
84
|
- README.md
|
85
85
|
- Rakefile
|
86
|
-
- Sifttter-Redux.gemspec
|
87
86
|
- bin/srd
|
88
|
-
- lib/
|
89
|
-
- lib/
|
90
|
-
- lib/
|
91
|
-
- lib/
|
92
|
-
- lib/
|
93
|
-
- lib/
|
94
|
-
- lib/
|
87
|
+
- lib/sifttter-redux.rb
|
88
|
+
- lib/sifttter-redux/cli-message.rb
|
89
|
+
- lib/sifttter-redux/config-manager.rb
|
90
|
+
- lib/sifttter-redux/constants.rb
|
91
|
+
- lib/sifttter-redux/date-range-maker.rb
|
92
|
+
- lib/sifttter-redux/methods.rb
|
93
|
+
- lib/sifttter-redux/os.rb
|
94
|
+
- sifttter-redux.gemspec
|
95
95
|
- test/catch_up_test.rb
|
96
96
|
- test/test_helper.rb
|
97
|
-
homepage: https://github.com/bachya/
|
97
|
+
homepage: https://github.com/bachya/sifttter-redux
|
98
98
|
licenses:
|
99
99
|
- MIT
|
100
100
|
metadata: {}
|
101
101
|
post_install_message:
|
102
102
|
rdoc_options:
|
103
103
|
- --charset=UTF-8
|
104
|
-
- --title
|
105
|
-
- Sifttter-Redux
|
106
|
-
- --main
|
107
|
-
- README.rdoc
|
108
|
-
- -ri
|
109
104
|
require_paths:
|
110
105
|
- lib
|
111
106
|
- lib
|
data/lib/Sifttter-Redux.rb
DELETED