class Gem::Commands::BuildCommand

def initialize

def initialize
  super 'build', 'Build a gem from a gemspec'
  add_option '--force', 'skip validation of the spec' do |value, options|
    options[:force] = true
  end
end