rss_notifier 0.1.1 → 0.1.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 +4 -4
- data/README.md +14 -8
- data/lib/rss_notifier/version.rb +1 -1
- data/rss_notifier.gemspec +0 -1
- metadata +1 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ad50037d77896483d40636f19ece47dacf04470
|
4
|
+
data.tar.gz: 28e47fc70e86ec5674ebb34d229f2d4a50513924
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8108416cc2c58c55d675246d669f6d22f4ba67e4cbae73f2cb143956add67844cd616c3e401c1c10af31aa497b0ecfd5adaf70eaf97de30adbe33eff84a18547
|
7
|
+
data.tar.gz: 2a57007aeb8637847d48e9cb997704f8984c3162c152e3ac8d9a0e868404496359065a08962337275f4f73d909839cff6b398208c092fe0507ed2f38246f54ed
|
data/README.md
CHANGED
@@ -8,19 +8,25 @@ It checks given rss urls every given period and notifies you using [Pushbullet](
|
|
8
8
|
Install the gem
|
9
9
|
|
10
10
|
```
|
11
|
-
|
11
|
+
$ gem install rss_notifier
|
12
12
|
```
|
13
13
|
|
14
14
|
Then initialize it somewhere
|
15
15
|
|
16
16
|
```
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
17
|
+
$ mkdir ~/craigslist
|
18
|
+
$ cd ~/craigslist
|
19
|
+
$ rss_notifier init --force
|
20
|
+
```
|
21
|
+
|
22
|
+
Configure `config.yml`. Then start `rss_notifier` to load initial rss content
|
23
|
+
without notification. Only then start `rss_notifier` with notification.
|
24
|
+
Otherwise your email/pushbullet will be flooded.
|
25
|
+
|
26
|
+
```
|
27
|
+
$ rss_notifier start
|
28
|
+
<CTRL-C>
|
29
|
+
$ rss_notifier start --notify
|
24
30
|
```
|
25
31
|
|
26
32
|
If you want it to run in the background, use `tmux`.
|
data/lib/rss_notifier/version.rb
CHANGED
data/rss_notifier.gemspec
CHANGED
@@ -19,7 +19,6 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.executables = spec.files.grep(%r[^bin/]).map { |f| File.basename(f) }
|
20
20
|
spec.require_paths = ["lib"]
|
21
21
|
|
22
|
-
spec.add_dependency 'nokogiri', '~> 1.6'
|
23
22
|
spec.add_dependency 'http', '~> 1.0'
|
24
23
|
spec.add_dependency 'thor', '~> 0.19'
|
25
24
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rss_notifier
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zhomart Mukhamejanov
|
@@ -10,20 +10,6 @@ bindir: bin
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2016-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: nokogiri
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '1.6'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '1.6'
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: http
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|