#!/usr/bin/env ruby require 'flok' require 'thor' class FlokCLI < Thor desc "new ", "Create a new flok project and/or module, you may supply an absolute path or relative, the last entry in the path will be the module name and folder name of the project" def new path Dir.mkdir path end end FlokCLI.start(ARGV)