Skip to content

Commit

Permalink
Sort spiders names when printing using CLI#list command
Browse files Browse the repository at this point in the history
  • Loading branch information
vifreefly committed Jul 25, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 0d27311 commit 5122179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kimurai/cli.rb
Original file line number Diff line number Diff line change
@@ -131,7 +131,7 @@ def list
raise "Can't find Kimurai project" unless inside_project?
require './config/boot'

Kimurai.list.keys.each { |name| puts name }
Kimurai.list.keys.sort.each { |name| puts name }
end

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

0 comments on commit 5122179

Please sign in to comment.