module ATD

The assistant technical director of your website. It does the dirty work so you can see the big picture.

Constants

VERSION

Public Class Methods

new(name) click to toggle source

Creates a new ATD App based on the template of {ATD::App}. @return [ATD::App] @param [Symbol] name The name of the new app and new class generated.

# File lib/atd.rb, line 18
def new(name)
  app = Class.new(App)
  Object.const_set(name.to_sym, app)
  app
end

Private Instance Methods

new(name) click to toggle source

Creates a new ATD App based on the template of {ATD::App}. @return [ATD::App] @param [Symbol] name The name of the new app and new class generated.

# File lib/atd.rb, line 18
def new(name)
  app = Class.new(App)
  Object.const_set(name.to_sym, app)
  app
end