28 lines
688 B
Ruby
28 lines
688 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Bundler::Checksum
|
||
|
module Command
|
||
|
autoload :Init, File.expand_path("command/init", __dir__)
|
||
|
autoload :Verify, File.expand_path("command/verify", __dir__)
|
||
|
autoload :Helper, File.expand_path("command/helper", __dir__)
|
||
|
|
||
|
def self.execute(args)
|
||
|
if args.empty?
|
||
|
$stderr.puts 'A command must be given [init,update,verify]'
|
||
|
end
|
||
|
|
||
|
if args.first == 'init'
|
||
|
Init.execute
|
||
|
elsif args.first == 'update'
|
||
|
$stderr.puts 'Not implemented, please use init'
|
||
|
elsif args.first == 'verify'
|
||
|
verified = Verify.execute
|
||
|
|
||
|
unless verified
|
||
|
exit 1
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|