class Pod::Command::IPC::Spec

def initialize(argv)

def initialize(argv)
  @path = argv.shift_argument
  super
end

def run

def run
  spec = Specification.from_file(@path)
  output_pipe.puts spec.to_yaml
end

def validate!

def validate!
  super
  help! "A specification path is required." unless @path
end