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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6183cf0b188673f697295e3fe5ae77725afe837f
4
- data.tar.gz: 12c67f6dd8126b511b446366812f14102d454c0c
3
+ metadata.gz: 5ad50037d77896483d40636f19ece47dacf04470
4
+ data.tar.gz: 28e47fc70e86ec5674ebb34d229f2d4a50513924
5
5
  SHA512:
6
- metadata.gz: 85ead0fdb3a2109bfbf3244c0d60725fda8ec6cc0a50a773eb12ededd7c39e9feae764657b8e8453f26889851b9c4a3ff64351facd370b6ab539ac166757dd8b
7
- data.tar.gz: 7c6766660d2b5a1e3649982697c7dcd05136af5b3744ef4294eb716b8411f008c7abeedff53f1d88bfee17178536655a8a05121a6a5ccc4276ca9600d91dac90
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
- $ gem install rss_notifier
11
+ $ gem install rss_notifier
12
12
  ```
13
13
 
14
14
  Then initialize it somewhere
15
15
 
16
16
  ```
17
- $ mkdir ~/craigslist
18
- $ cd ~/craigslist
19
- $ rss_notifier init --force
20
- $ vim config.yml
21
- $ rss_notifier start
22
- <CTRL-C> load initial rss content without notification.
23
- $ rss_notifier start --notify
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`.
@@ -1,3 +1,3 @@
1
1
  module RssNotifier
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -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.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