cli-talky-talk 0.2.0 → 0.2.1
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 +8 -10
- data/config/preferences.yml +1 -0
- data/lib/cli-talky-talk.rb +0 -1
- data/lib/cli_talky_talk/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f22ab172cbcbb48a3cf4b903ae488026ba4e9f1
|
|
4
|
+
data.tar.gz: 0c937c1bf9ca3a7ab875ac096e4a1578fd4424ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 319b8af17fbac4164f90c25a9345cfb64369fae6871d51c73b185c34624bfc7b6be7e2b065cbcdb150cc024e058ede83c704392041fd55930ce56cc18f27acff
|
|
7
|
+
data.tar.gz: 35d6d2182dc58e9766ce912cc9b163dacf983061219cd30d1a5150b4da7f726f77bbef703696776922e716206633f9e0010f95d435259b0449af263c239db388
|
data/README.md
CHANGED
|
@@ -9,7 +9,7 @@ This currently only works on OS X. I'll be able to add Linux support soon. I jus
|
|
|
9
9
|
cli-talky-talk is very easy to use. All you need to do is add `&& speak` at the end of a long running terminal command. When the command is done your computer will address you with a random message letting you know that the work is finished.
|
|
10
10
|
|
|
11
11
|
```
|
|
12
|
-
|
|
12
|
+
$ <some terminal command that will take a while> && speak
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
For all options:
|
|
@@ -20,19 +20,17 @@ speak --help
|
|
|
20
20
|
|
|
21
21
|
## Installation
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
Install it with ruby gems:
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
gem 'cli-talky-talk'
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
And then execute:
|
|
25
|
+
$ gem install cli-talky-talk
|
|
30
26
|
|
|
31
|
-
|
|
27
|
+
Then if you want to customize it to your liking:
|
|
32
28
|
|
|
33
|
-
|
|
29
|
+
```
|
|
30
|
+
$ speak --install
|
|
31
|
+
```
|
|
34
32
|
|
|
35
|
-
|
|
33
|
+
This command copies the default preference file to your ~/.cli-talky-talk.yml
|
|
36
34
|
|
|
37
35
|
## Contributing
|
|
38
36
|
|
data/config/preferences.yml
CHANGED
data/lib/cli-talky-talk.rb
CHANGED