class Jeweler::Commands::ValidateGemspec

def run

def run
  gemspec_helper.parse
  output.puts "#{gemspec_helper.path} is valid."
rescue Exception => _e
  output.puts "#{gemspec_helper.path} is invalid. See the backtrace for more details."
  raise
end