working_man 1.1.0 → 1.2.0

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: 10fbff4f9036ee7bbf2cecc406e1cb7622be9af7
4
- data.tar.gz: 5d8b39dafffe4a4df438a4d527d02893cf119453
3
+ metadata.gz: 7596d4e63be655d1ff31853f3bdbfdc7f0f293e1
4
+ data.tar.gz: 3aab0a38045d3db5418dc635c86a7b0d75d215ea
5
5
  SHA512:
6
- metadata.gz: 68da5075f1c3b727df8e1aca468a923cba91790b2648706b9683d071bfa2d401a880c7d92edf0f165d02a3342595e1b5f9c7f50ff8284466b0d31c332c6b0036
7
- data.tar.gz: 4fff83c282d53648be5938589fe873745974c3df16b34e72e4b503233f3a235be04533237c941da6c2e20d6aecb6a91f5c9d0794b3df7f6abd8e651563d84163
6
+ metadata.gz: b5601b31ab63ccb3ddb18d3546051b65d9d5ae339832e697bc19ccda928fe26e958bb8acdbc2b14aa5850b1a5cd9498791a204e226867b1fb121811575574ab1
7
+ data.tar.gz: 1186b4967d0306c90e01109469305768327df720078f02197233c8171211502090627a5748020e745f47131bf977e3788f75ce73bf93206f16e9d9e4c8351d4f
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- working_man (1.1.0)
4
+ working_man (1.2.0)
5
5
  thor (~> 0.19)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -10,6 +10,7 @@ applications you need as well as any URLs.
10
10
 
11
11
  ## CI Status
12
12
 
13
+ [![Gem Version](https://badge.fury.io/rb/working_man.svg)](https://badge.fury.io/rb/working_man)
13
14
  [![Build Status](https://secure.travis-ci.org/emachnic/working_man.png)](http://travis-ci.org/emachnic/working_man)
14
15
  [![Dependency Status](https://gemnasium.com/emachnic/working_man.png)](https://gemnasium.com/emachnic/working_man)
15
16
 
@@ -22,7 +23,7 @@ Install like normal in your system then start/stop as needed.
22
23
 
23
24
  ## Configuration
24
25
 
25
- WorkingMan reads applications and URLs from `~/.working_man.yml`. You
26
+ WorkingMan reads applications and URLs from `~/.working_man.yml`. You
26
27
  just need to customize it to your needs and then run.
27
28
 
28
29
  ### Example
@@ -45,11 +46,11 @@ urls:
45
46
  To start your work day, run the following:
46
47
 
47
48
  $ working_man start
48
-
49
+
49
50
  After you're finished with work, run:
50
51
 
51
52
  $ working_man stop
52
-
53
+
53
54
  You can also specify a different location for your YAML config:
54
55
 
55
56
  & working_man start -f path/to/config.yml
@@ -68,7 +69,7 @@ You can also specify a different location for your YAML config:
68
69
 
69
70
  [emachnic@broadmac.net][1] wrote this file. As long as you retain this notice you can do whatever
70
71
  you want with this stuff. If we meet some day, and you think this stuff is worth it, you can
71
- buy me a beer in return.
72
+ buy me a beer in return.
72
73
 
73
74
  **Evan B. Machnic**
74
75
 
@@ -1,3 +1,3 @@
1
1
  module WorkingMan
2
- VERSION = "1.1.0"
2
+ VERSION = "1.2.0"
3
3
  end
@@ -14,6 +14,22 @@ Gem::Specification.new do |gem|
14
14
  gem.name = "working_man"
15
15
  gem.require_paths = ["lib"]
16
16
  gem.version = WorkingMan::VERSION
17
+ gem.post_install_message = <<-END
18
+ Thanks for installing WorkingMan!
19
+
20
+ To get started, you'll need a .working_man.yml configuration file in your
21
+ home directory. You can use the following as an example:
22
+
23
+ apps:
24
+ - 'Google Chrome'
25
+
26
+ urls:
27
+ - 'http://www.ruby-lang.com'
28
+
29
+ Please see the documentation at http://emachnic.github.com/working_man for
30
+ more information.
31
+ END
32
+
17
33
  gem.add_development_dependency 'rdoc'
18
34
  gem.add_development_dependency 'rake', '~> 10.4'
19
35
  gem.add_development_dependency 'aruba', '~> 0.10'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: working_man
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Machnic
@@ -110,7 +110,20 @@ files:
110
110
  homepage: http://emachnic.github.com/working_man
111
111
  licenses: []
112
112
  metadata: {}
113
- post_install_message:
113
+ post_install_message: |2
114
+ Thanks for installing WorkingMan!
115
+
116
+ To get started, you'll need a .working_man.yml configuration file in your
117
+ home directory. You can use the following as an example:
118
+
119
+ apps:
120
+ - 'Google Chrome'
121
+
122
+ urls:
123
+ - 'http://www.ruby-lang.com'
124
+
125
+ Please see the documentation at http://emachnic.github.com/working_man for
126
+ more information.
114
127
  rdoc_options: []
115
128
  require_paths:
116
129
  - lib