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
_______________________________________________
Camping-list mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/camping-list

Reply via email to