working_man 1.1.0 → 1.2.0
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/Gemfile.lock +1 -1
- data/README.md +5 -4
- data/lib/working_man/version.rb +1 -1
- data/working_man.gemspec +16 -0
- metadata +15 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7596d4e63be655d1ff31853f3bdbfdc7f0f293e1
|
4
|
+
data.tar.gz: 3aab0a38045d3db5418dc635c86a7b0d75d215ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5601b31ab63ccb3ddb18d3546051b65d9d5ae339832e697bc19ccda928fe26e958bb8acdbc2b14aa5850b1a5cd9498791a204e226867b1fb121811575574ab1
|
7
|
+
data.tar.gz: 1186b4967d0306c90e01109469305768327df720078f02197233c8171211502090627a5748020e745f47131bf977e3788f75ce73bf93206f16e9d9e4c8351d4f
|
data/Gemfile.lock
CHANGED
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
|
+
[](https://badge.fury.io/rb/working_man)
|
13
14
|
[](http://travis-ci.org/emachnic/working_man)
|
14
15
|
[](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
|
|
data/lib/working_man/version.rb
CHANGED
data/working_man.gemspec
CHANGED
@@ -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.
|
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
|