class Camping::Commands

Public Class Methods

routes(theApp = Camping, silent = false) click to toggle source

A helper method to spit out Routes for an application

# File lib/camping/commands.rb, line 108
def self.routes(theApp = Camping, silent = false)
  routes = Camping::CommandsHelpers::RoutesParser.parse theApp
  routes.display unless silent == true
  return routes
end