wip 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/wip/version.rb +1 -1
- data/wip.gemspec +9 -51
- metadata +13 -55
data/lib/wip/version.rb
CHANGED
data/wip.gemspec
CHANGED
@@ -30,63 +30,21 @@ Gem::Specification.new do |s|
|
|
30
30
|
Thank you for installing #{s.name} v#{s.version}
|
31
31
|
------------------------------------------------------------------------------
|
32
32
|
|
33
|
-
|
33
|
+
Please Note:
|
34
34
|
|
35
|
-
|
36
|
-
|
37
|
-
|
35
|
+
`wip` (for now) depends on `wip-bootstrap`. If you didn't already have the
|
36
|
+
necessary version of `wip-bootstrap` installed, you should see a short banner
|
37
|
+
just above this, indicating that you need to run
|
38
38
|
|
39
|
-
|
40
|
-
`wip` will not attempt to re-bootstrap, unless dependent on a new
|
41
|
-
bootstrap version.
|
39
|
+
wip-bootstrap
|
42
40
|
|
43
|
-
|
44
|
-
preceding this one.
|
45
|
-
* `wip` provides ruby CLI utilities that are meant to assist with software
|
46
|
-
project workspace and workflow management (called 'works').
|
41
|
+
If so, please run that now and then `source ~/.wiprc` to get set up.
|
47
42
|
|
48
|
-
|
43
|
+
`wip-bootstrap` shouldn't have to be updated too often, so this step will be
|
44
|
+
infrequent, even when you update `wip` (proper).
|
49
45
|
|
50
|
-
wip-ruby
|
51
46
|
|
52
|
-
|
53
|
-
function called `wip` to your environment. So,
|
54
|
-
|
55
|
-
wip
|
56
|
-
|
57
|
-
is your entry point (even though it doesn't show up with `which wip`).
|
58
|
-
|
59
|
-
|
60
|
-
Getting started:
|
61
|
-
|
62
|
-
* If this is your *first* time installing `wip` on this machine, you need
|
63
|
-
to `source ~/.wiprc` to get things activated for your current shell
|
64
|
-
session(s).
|
65
|
-
* Drop a `.wiprc` file into a project of your liking. Add some
|
66
|
-
project-specific setup to that file. To start, try this:
|
67
|
-
|
68
|
-
echo 'welcome to my cool project!'
|
69
|
-
|
70
|
-
* Next these a try:
|
71
|
-
|
72
|
-
wip help
|
73
|
-
|
74
|
-
wip index ~/workspace
|
75
|
-
# containing, perhaps, numerous 'works'
|
76
|
-
# returns a list of work names and paths
|
77
|
-
|
78
|
-
wip
|
79
|
-
# shortcut for `wip index .`
|
80
|
-
|
81
|
-
wip show WORK_NAME
|
82
|
-
# cd's to known (indexed) work and sources .wiprc, e.g.:
|
83
|
-
# welcome to my cool project!
|
84
|
-
|
85
|
-
wip WORK_NAME
|
86
|
-
# shortcut for `wip show`
|
87
|
-
|
88
|
-
wip .
|
89
|
-
# shortcut for `wip show .`
|
47
|
+
For more info on `wip`, see <http://github.com/coreyti/wip>
|
90
48
|
|
91
49
|
|
92
50
|
Feedback, complaints, suggestions, etc?
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wip
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 31
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 2
|
10
|
+
version: 0.1.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Corey Innis
|
@@ -106,66 +106,24 @@ licenses: []
|
|
106
106
|
|
107
107
|
post_install_message: |
|
108
108
|
|
109
|
-
Thank you for installing wip v0.1.
|
109
|
+
Thank you for installing wip v0.1.2
|
110
110
|
------------------------------------------------------------------------------
|
111
111
|
|
112
|
-
|
113
|
-
|
114
|
-
* First, `wip` depends on `wip-bootstrap`, which should have been installed
|
115
|
-
for you if it wasn't already around. `wip-bootstrap` simply adds a few
|
116
|
-
bash wrappers to `wip` and sets up your bash profile.
|
117
|
-
|
118
|
-
`wip-bootstrap` shouldn't have to be updated too often, and updates to
|
119
|
-
`wip` will not attempt to re-bootstrap, unless dependent on a new
|
120
|
-
bootstrap version.
|
121
|
-
|
122
|
-
If bootstrapping *was* run, you should have seen a related banner
|
123
|
-
preceding this one.
|
124
|
-
* `wip` provides ruby CLI utilities that are meant to assist with software
|
125
|
-
project workspace and workflow management (called 'works').
|
126
|
-
|
127
|
-
The executable doing most of the heavy lifting is:
|
128
|
-
|
129
|
-
wip-ruby
|
130
|
-
|
131
|
-
* However, one of the things `wip-bootstrap` takes care of is add a bash
|
132
|
-
function called `wip` to your environment. So,
|
133
|
-
|
134
|
-
wip
|
135
|
-
|
136
|
-
is your entry point (even though it doesn't show up with `which wip`).
|
137
|
-
|
138
|
-
|
139
|
-
Getting started:
|
140
|
-
|
141
|
-
* If this is your *first* time installing `wip` on this machine, you need
|
142
|
-
to `source ~/.wiprc` to get things activated for your current shell
|
143
|
-
session(s).
|
144
|
-
* Drop a `.wiprc` file into a project of your liking. Add some
|
145
|
-
project-specific setup to that file. To start, try this:
|
146
|
-
|
147
|
-
echo 'welcome to my cool project!'
|
148
|
-
|
149
|
-
* Next these a try:
|
112
|
+
Please Note:
|
150
113
|
|
151
|
-
|
114
|
+
`wip` (for now) depends on `wip-bootstrap`. If you didn't already have the
|
115
|
+
necessary version of `wip-bootstrap` installed, you should see a short banner
|
116
|
+
just above this, indicating that you need to run
|
152
117
|
|
153
|
-
|
154
|
-
# containing, perhaps, numerous 'works'
|
155
|
-
# returns a list of work names and paths
|
118
|
+
wip-bootstrap
|
156
119
|
|
157
|
-
|
158
|
-
# shortcut for `wip index .`
|
120
|
+
If so, please run that now and then `source ~/.wiprc` to get set up.
|
159
121
|
|
160
|
-
|
161
|
-
|
162
|
-
# welcome to my cool project!
|
122
|
+
`wip-bootstrap` shouldn't have to be updated too often, so this step will be
|
123
|
+
infrequent, even when you update `wip` (proper).
|
163
124
|
|
164
|
-
wip WORK_NAME
|
165
|
-
# shortcut for `wip show`
|
166
125
|
|
167
|
-
|
168
|
-
# shortcut for `wip show .`
|
126
|
+
For more info on `wip`, see <http://github.com/coreyti/wip>
|
169
127
|
|
170
128
|
|
171
129
|
Feedback, complaints, suggestions, etc?
|