toolshed 0.0.3 → 0.0.4
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/bin/toolshed.rb +12 -0
- data/lib/toolshed/version.rb +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: 8d7f36f7fce51b7916aad6741cf12e62ed18aebd
|
|
4
|
+
data.tar.gz: 9e1784114b5981be500e3b21a919f7d7c6ea6e3d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50b81af0fbc10f5f14c453e61a841ec36f14283b6eb3792034175bddc681c0b4e33c8d3793149bb7a886e3ea7155d10323e98f907b2fe3b8b8c90b0cfb05f288
|
|
7
|
+
data.tar.gz: d19487356cfdebde1a0dfeca6c2008dda41de775ce9c5ee2e9dcd6e8ffac15c2bf5631d15ea1fa5e7c5b3c399533a8810ca3dee1a459f81d7d569c7957ce451c
|
data/bin/toolshed.rb
CHANGED
|
@@ -17,6 +17,18 @@ be found at https://github.com/wallerjake/toolshed
|
|
|
17
17
|
Before using this tool you should create a file called .toolshed in your home directory
|
|
18
18
|
and add the following to that file:
|
|
19
19
|
|
|
20
|
+
use_pivotal_tracker: true
|
|
21
|
+
pivotal_tracker_username: [pivotal_tracker_username]
|
|
22
|
+
pivotal_tracker_password: [pivotal_tracker_password]
|
|
23
|
+
default_pivotal_tracker_project_id: [project_id]
|
|
24
|
+
github_username: [github_username]
|
|
25
|
+
github_password: [github_password]
|
|
26
|
+
branched_from_remote_name: [branched_from_remote_name]
|
|
27
|
+
branched_from_user: [branched_from_username]
|
|
28
|
+
branched_from_repo_name: [branched_from_repo_name]
|
|
29
|
+
push_from_user: [push_from_yourself]
|
|
30
|
+
push_to_myself: [push_to_yourself]
|
|
31
|
+
|
|
20
32
|
== Commands
|
|
21
33
|
|
|
22
34
|
All commands are executed as toolshed [options] command [command-options] args
|
data/lib/toolshed/version.rb
CHANGED