toolshed 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/toolshed/cli.rb +2 -2
- 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: c096be0a8d66846437311b91ad38f464afc49b9c
|
4
|
+
data.tar.gz: f6e1d5e8f0643015fca828e276cdc8f2f29b0cc3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d87dc0fe728c39c22ef5c73421bed2fcd961386ec269ce89e7665409102e3e27d1a3924b2380e6030bec185d42b776c7ad37c5b7c1fdf4404a14329503004573
|
7
|
+
data.tar.gz: d77be97e8cbf7023682189606e080a0c87b178a9412d0d7259871924ca08aa8fcd95bbc0bb936c26d9e01561c250a5d3070ea055521690699a7aaeca58ce21cb
|
data/lib/toolshed/cli.rb
CHANGED
@@ -27,7 +27,7 @@ module Toolshed
|
|
27
27
|
'update_pivotal_tracker_story_status' => Toolshed::Commands::UpdatePivotalTrackerStoryStatus,
|
28
28
|
'create_branch' => Toolshed::Commands::CreateBranch,
|
29
29
|
'checkout_branch' => Toolshed::Commands::CheckoutBranch,
|
30
|
-
'
|
30
|
+
'push_branch' => Toolshed::Commands::PushBranch,
|
31
31
|
'get_daily_time_update' => Toolshed::Commands::GetDailyTimeUpdate,
|
32
32
|
'list_branches' => Toolshed::Commands::ListBranches,
|
33
33
|
'delete_branch' => Toolshed::Commands::DeleteBranch,
|
@@ -42,7 +42,7 @@ require 'toolshed/commands/get_pivotal_tracker_story_information'
|
|
42
42
|
require 'toolshed/commands/update_pivotal_tracker_story_status'
|
43
43
|
require 'toolshed/commands/create_branch'
|
44
44
|
require 'toolshed/commands/checkout_branch'
|
45
|
-
require 'toolshed/commands/
|
45
|
+
require 'toolshed/commands/push_branch'
|
46
46
|
require 'toolshed/commands/get_daily_time_update'
|
47
47
|
require 'toolshed/commands/get_daily_time_update'
|
48
48
|
require 'toolshed/commands/list_branches'
|
data/lib/toolshed/version.rb
CHANGED