lib/octopress-ink/commands.rb in octopress-ink-1.0.0.alpha.33 vs lib/octopress-ink/commands.rb in octopress-ink-1.0.0.alpha.34

- old
+ new

@@ -1,17 +1,20 @@ module Octopress module Ink module Commands require 'octopress-ink/commands/info' + require 'octopress-ink/commands/copy' class Ink < Octopress::Command def self.init_with_program(p) p.command(:ink) do |c| - c.syntax "octopress ink [options]" - c.description "Get about octopress ink plugins" + c.version Octopress::Ink::VERSION + c.description "Get informationa about and work with Octopress Ink plugins." + c.syntax "ink <subcommand>" Info.process_command(c) + Copy.process_command(c) end end end end end