lib/relish/commands/help.rb in relish-0.1.0 vs lib/relish/commands/help.rb in relish-0.1.1
- old
+ new
@@ -2,9 +2,19 @@
module Command
class Help < Base
desc 'show this usage'
command :default do
+ puts <<-TEXT
+A <project> can be scoped by an organization or user handle. For
+example, if an organiztion (rspec) has a project (rspec-core), then
+the <project> would be `rspec/rspec-core`. If a user (justin) has a
+project (my-project), then <project> would be `justin/my-project`.
+
+If you leave off the organization or user handle, then it defaults
+to the user (you).
+
+ TEXT
puts "=== Available Commands\n\n"
Dsl::HelpText.commands.each do |command, list|
list.each {|hash| Formatter.new(command, hash).format }
end
end
\ No newline at end of file