class Gem::Commands::BuildCommand

def execute

def execute
  if build_path = options[:build_path]
    Dir.chdir(build_path) { build_gem }
    return
  end
  build_gem
end