Sha256: 270577087918f55528a69e265efa70a81538c66d820b8df559eeee368280b467
Contents?: true
Size: 320 Bytes
Versions: 1
Compression:
Stored size: 320 Bytes
Contents
module Florby require 'florby/builder' require 'florby/server' class CLI def self.run(args) subcommand = args.shift case subcommand when "build" Florby::Builder.run when "server" Florby::Server.run else puts "unknown command" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
florby-0.1.0 | lib/florby/cli.rb |