adding-help: commit renamed help to usage

This commit is contained in:
rkiel
2015-06-07 19:21:48 -04:00
parent 98208061b4
commit 5f99a16fd3
11 changed files with 33 additions and 12 deletions

18
lib/feature/help.rb Normal file
View File

@@ -0,0 +1,18 @@
require_relative './base'
module Feature
class Help < Feature::Base
def valid?
true
end
def usage
exit
end
def execute
end
end
end