Sha256: f3737ba006ad9d10d1664be562814f092bf371edf23642fccf423a4fd4abd562

Contents?: true

Size: 460 Bytes

Versions: 1

Compression:

Stored size: 460 Bytes

Contents

module Octopress
  module Ink
    module Commands
      require 'octopress-ink/commands/info'

      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"

            Info.process_command(c)

            c.action do |args, options|
            end
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
octopress-ink-1.0.0.alpha.32 lib/octopress-ink/commands.rb