cli-talky-talk 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 76dcd913db3f96743a0436b6a10294d3d9ea026c
4
- data.tar.gz: 35f5808942746b3826925b539af1af5475d2e12b
3
+ metadata.gz: 5f22ab172cbcbb48a3cf4b903ae488026ba4e9f1
4
+ data.tar.gz: 0c937c1bf9ca3a7ab875ac096e4a1578fd4424ca
5
5
  SHA512:
6
- metadata.gz: 60ec7e91d34a5af615fb42388b6ed993c313a8288e2c28c9a1396d931dd57635403efeb478908e5b2009fbb066b1ae9ed540d5857ba45e2f6edc21e1b126db91
7
- data.tar.gz: ad0fbb9375a4ba31545c7e79203f58c365831a839a40bb5270ac7600a7fb15d07f5e54b6e48d8623a3d7616eb5a00d22dcc66222d7d1643586b89375adc42cb3
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
- > <some terminal command that will take a while> && speak
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
- Add this line to your application's Gemfile:
23
+ Install it with ruby gems:
24
24
 
25
- ```ruby
26
- gem 'cli-talky-talk'
27
- ```
28
-
29
- And then execute:
25
+ $ gem install cli-talky-talk
30
26
 
31
- $ bundle
27
+ Then if you want to customize it to your liking:
32
28
 
33
- Or install it yourself as:
29
+ ```
30
+ $ speak --install
31
+ ```
34
32
 
35
- $ gem install cli-talky-talk
33
+ This command copies the default preference file to your ~/.cli-talky-talk.yml
36
34
 
37
35
  ## Contributing
38
36
 
@@ -1,4 +1,5 @@
1
1
  # This file is used with the cli-talky-talk gem
2
+ # Some of the words in segments are misspelled intentionally to make them sound more accurate when pronounced.
2
3
  options:
3
4
  voice:
4
5
  whitelist:
@@ -1,4 +1,3 @@
1
- require 'pry'
2
1
  require 'yaml'
3
2
 
4
3
  class CliTalkyTalk
@@ -1,3 +1,3 @@
1
1
  class CliTalkyTalk
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cli-talky-talk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean McCleary