Skip to content

Commit 5122179

Browse files
committed
Sort spiders names when printing using CLI#list command
1 parent 0d27311 commit 5122179

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/kimurai/cli.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def list
131131
raise "Can't find Kimurai project" unless inside_project?
132132
require './config/boot'
133133

134-
Kimurai.list.keys.each { |name| puts name }
134+
Kimurai.list.keys.sort.each { |name| puts name }
135135
end
136136

137137
desc "runner", "Run all spiders in the project in queue"

0 commit comments

Comments
 (0)