flowdock-notifications 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -1
- data/flowdock-notifications.gemspec +2 -2
- data/lib/flowdock-notifications/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66576970e631f56c8b50042e3077e769239fe128
|
4
|
+
data.tar.gz: a442b6c7366f38bcfb10f46f6545826c59cb8c52
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42e8dbdb760e3a5704b3b31f02f3c2c9a0e559aa58c0ae0fe79e422581ff222a88f073cbadfc2add7982f68525ab9e48b92bcb4eb7a0ecd24f93b6db5927cec4
|
7
|
+
data.tar.gz: a393c20fb8a4452a89b641a783dc3970bab78c7673b5d49853c60590b40262fffba24ad92ff7589090967e45a1cc40940c03842d1877cb33aea6ecfcd6cc4250
|
data/README.md
CHANGED
@@ -11,7 +11,8 @@ Install the gem globally:
|
|
11
11
|
|
12
12
|
Add `FLOWDOCK_API_TOKEN=<your flowdock api token>` to your environment variables.
|
13
13
|
|
14
|
-
Then run `
|
14
|
+
Then run `flowdock-notifications` as periodic as you'd like to receive messages (eg. every 30 seconds). You'll need to
|
15
|
+
run it after X is loaded though for libnotify's dependency on dbus: that is, through your window manager -- cron won't work.
|
15
16
|
|
16
17
|
## Contributing
|
17
18
|
|
@@ -14,10 +14,10 @@ Gem::Specification.new do |spec|
|
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
-
spec.bindir = "exe"
|
18
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
17
|
spec.require_paths = ["lib"]
|
20
18
|
|
19
|
+
spec.executables << 'flowdock-notifications'
|
20
|
+
|
21
21
|
spec.add_runtime_dependency "flowdock"
|
22
22
|
spec.add_runtime_dependency "notify"
|
23
23
|
|
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flowdock-notifications
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kent Mewhort
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2015-03-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
@@ -69,7 +69,8 @@ dependencies:
|
|
69
69
|
description:
|
70
70
|
email:
|
71
71
|
- kent@openissues.ca
|
72
|
-
executables:
|
72
|
+
executables:
|
73
|
+
- flowdock-notifications
|
73
74
|
extensions: []
|
74
75
|
extra_rdoc_files: []
|
75
76
|
files:
|