Sha256: 344184436fb653e9501004090f3dfa9ea9b3cbab93e0fa1e68188e40417bf296
Contents?: true
Size: 543 Bytes
Versions: 2
Compression:
Stored size: 543 Bytes
Contents
#!/usr/bin/env ruby lib = File.expand_path(File.dirname(__FILE__) + '/../lib') $LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib) require 'rubygems' require 'thor' require 'thor/group' require 'doc_smoosher' module CLI class Root < Thor register DocSmoosher::Generators::Api, 'new', 'new <API Name>', 'Makes an new API scaffold folder structure ready for editing' register DocSmoosher::Generators::Builder, 'generate', 'generate', 'Generate stuff based on your API definition ' end end CLI::Root.start
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
doc_smoosher-0.1.0 | bin/smoosher |
doc_smoosher-0.0.2 | bin/smoosher |