Got an iPhone or iPad? We have a brand new Pastebin App for both devices, and it's totally free! Click here to download the new Pastebin App for iOS.
Guest

Untitled

By: a guest on Feb 12th, 2012  |  syntax: None  |  size: 0.44 KB  |  hits: 33  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. # non-working example
  2. # check http://www.pastie.org/466338 for the working version
  3.  
  4. require 'rubygems'
  5. require 'innate'
  6.  
  7. class Test
  8.   include Innate::Node
  9.   map '/'
  10.  
  11. TEMPLATE = '
  12. <html>
  13.         <head>
  14.                 <title><%= @title %></title>
  15.         </head>
  16.         <body>
  17.                 <h1><%= @title %></h1>
  18.         </body>
  19. </html>'.gsub(/^  /, '')
  20.  
  21.   def index
  22.         @title = 'Search'
  23.         TEMPLATE
  24.   end
  25.  
  26.   def list
  27.         @title = 'List'
  28.         TEMPLATE
  29.   end
  30. end
  31.  
  32. Innate.start