Sha256: 6ad4d8c4e403875ff7624bfe3ccb65755a442c5192f6b3b0efe3deb97d659505
Contents?: true
Size: 338 Bytes
Versions: 26
Compression:
Stored size: 338 Bytes
Contents
#!/usr/bin/env ruby require "edge_framework" command = ARGV[0] type = ARGV[1] name = ARGV[2] if command == nil || command == "help" || command == "-h" Edge.help() elsif command == "create" if ARGV.length >= 4 Edge.command_too_long() else Edge.create( type, name ) end else Edge.not_found( command ) end
Version data entries
26 entries across 26 versions & 1 rubygems