Sha256: 1d95cb2a806b6a4979156fc1af084d5a6c40a1001569823e5791af6920b6cbc2
Contents?: true
Size: 721 Bytes
Versions: 55
Compression:
Stored size: 721 Bytes
Contents
#!/usr/bin/env ruby ######################## ######################## ######################## # # IMPORTANT NOTE # # This script is deprecated. it's just here for backwards compatibility. # # Users should be using the Frank::CLI-backed `frank` executable # ######################## ######################## ######################## require 'frank-cucumber/cli' Frank::CLI.start command = ARGV[0] unless ["update-server",nil].include? command puts "unrecognized command #{command}" puts "the only valid command at the moment is update-server" exit 10 end update_mode = ARGV[0] == 'update-server' cli = Frank::CLI.new if update_mode cli.update else cli.skeleton end
Version data entries
55 entries across 55 versions & 4 rubygems