Top Level Namespace

Defined Under Namespace

Modules: Renee

Instance Method Summary collapse

Instance Method Details

#Renee(&blk) ⇒ Object

Method for creating new Renee applications.

Examples:

run Renee {
  halt "hello renee"
}

See Also:



10
11
12
# File 'lib/renee.rb', line 10

def Renee(&blk)
  Class.new(Renee::Application).app(&blk)
end