Squatting

zimbatm zimbatm at oree.ch
Fri May 16 05:05:53 EDT 2008


module MyApp
  module Controllers
    class Index < R '/', '/(.*)'
      def get(opts = nil)
        @opts = opts
        render( opts ? :opts : :index )
      end
    end
  end

  module Views
    def index
      h1 "Regular"
    end

    def opts
      h1 "Opts"
      p @opts
    end
  end
end


More information about the Camping-list mailing list