more basic framework

This commit is contained in:
Steve Coast 2006-07-28 21:53:30 +00:00
parent 15f23469d9
commit b4c0bfd8fa
20 changed files with 1084 additions and 448 deletions

View file

@ -0,0 +1,4 @@
# Filters added to this controller will be run for all controllers in the application.
# Likewise, all the methods added will be available for all controllers.
class ApplicationController < ActionController::Base
end

View file

@ -0,0 +1,2 @@
class TraceController < ApplicationController
end

View file

@ -0,0 +1,2 @@
class TracePointsController < ApplicationController
end

View file

@ -0,0 +1,6 @@
class UserController < ApplicationController
def new
end
end