class Gem::Commands::LockCommand

def initialize

def initialize
  super 'lock', 'Generate a lockdown list of gems',
        :strict => false
  add_option '-s', '--[no-]strict',
             'fail if unable to satisfy a dependency' do |strict, options|
    options[:strict] = strict
  end
end