torque 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +39 -20
- data/VERSION +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: f1f4f789ab890d1a802b0de58c3dced7477e6df8
|
4
|
+
data.tar.gz: 85c294e1fb284044dfbae06dd5d76c6c499b6d50
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 08cf0d4d521922aa92f4336124b795fc59275fd49fd3b77737b3d01a74861537e693b4a398600ef1d41ed69167e5959fd2a74e48a540e6b59291951bec13f31e
|
7
|
+
data.tar.gz: e81ff72fa1ebea902919af74d2a8c9a84e50d55c031c550acc4ccfd684b3adb6790b4de8f3e7051416c61235f500727c942064f53cec50d8dcd4d748c43aaf22
|
data/README.md
CHANGED
@@ -27,6 +27,7 @@ Current Features
|
|
27
27
|
* Compile stories accepted within a custom date range
|
28
28
|
* Filtering stories by label, owner and/or story type
|
29
29
|
* Generate notes for specific number of completed project iterations
|
30
|
+
* Format the release notes according to a customizable formatting string
|
30
31
|
* Configuration script that automatically sets up a directory to use Torque
|
31
32
|
* Display all of your current Pivotal Tracker projects and easily switch between them
|
32
33
|
* Ability to email the finished release notes from a personal email account to a pre-specified mailing list. (Currently can only send from accounts hosted by Gmail)
|
@@ -156,36 +157,54 @@ Parameters:
|
|
156
157
|
Exit Codes
|
157
158
|
----------
|
158
159
|
|
159
|
-
The following is a list of exit codes
|
160
|
+
The following is a list of exit codes on various errors for each of the Torque scripts.
|
160
161
|
|
161
|
-
|
162
|
-
|
163
|
-
|
162
|
+
General
|
163
|
+
|
164
|
+
| Code | Meaning |
|
165
|
+
| -------------- | ---------------------------------------- |
|
166
|
+
| 3 | Invalid arguments |
|
167
|
+
| 4 | Cannot connect to Pivotal Tracker API |
|
164
168
|
|
165
169
|
torque
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
170
|
+
|
171
|
+
| Code | Meaning |
|
172
|
+
| -------------- | ---------------------------------------- |
|
173
|
+
| 5 | Missing torque info file |
|
174
|
+
| 6 | Missing output directory |
|
175
|
+
| 7 | Missing token |
|
176
|
+
| 8 | Invalid token |
|
177
|
+
| 9 | Missing project |
|
178
|
+
| 10 | Invalid project |
|
179
|
+
| 11 | Misc. Pivotal Tracker API request error |
|
180
|
+
| 12 | Misc argument error |
|
174
181
|
|
175
182
|
torque config
|
176
|
-
|
177
|
-
|
178
|
-
|
183
|
+
|
184
|
+
| Code | Meaning |
|
185
|
+
| -------------- | ---------------------------------------- |
|
186
|
+
| 5 | Pre-existing output directory |
|
187
|
+
| 6 | Pre-existing torque info file |
|
188
|
+
| 7 | Invalid output directory |
|
179
189
|
|
180
190
|
torque email
|
181
|
-
|
191
|
+
|
192
|
+
| Code | Meaning |
|
193
|
+
| -------------- | ---------------------------------------- |
|
194
|
+
| 5 | Missing torque info file |
|
182
195
|
|
183
196
|
torque format
|
184
|
-
5 Missing torque info file
|
185
197
|
|
186
|
-
|
187
|
-
|
188
|
-
|
198
|
+
| Code | Meaning |
|
199
|
+
| -------------- | ---------------------------------------- |
|
200
|
+
| 5 | Missing torque info file |
|
201
|
+
|
202
|
+
torque project
|
203
|
+
|
204
|
+
| Code | Meaning |
|
205
|
+
| -------------- | ---------------------------------------- |
|
206
|
+
| 5 | Missing torque info file |
|
207
|
+
| 6 | Project not found |
|
189
208
|
|
190
209
|
License
|
191
210
|
-------
|
data/VERSION
CHANGED