class Skellington::CLI

Public Instance Methods

generate(wormname) click to toggle source
# File lib/skellington/cli.rb, line 21
def generate wormname
  @g = Generator.new wormname, options
  @g.licensor = options[:licensor]
  @g.run
end
postinstall() click to toggle source
# File lib/skellington/cli.rb, line 29
def postinstall
  s = 'For some other things you might find useful, see this gist:'
  s << "\n\n"
  s << '    https://gist.github.com/pikesley/1789cab7b10f0d8765d4'
  puts s
end
version() click to toggle source
# File lib/skellington/cli.rb, line 4
def version
  puts "skellington version #{VERSION}"
end