impressionist/test_app/app/controllers/widgets_controller.rb

11 lines
149 B
Ruby
Raw Normal View History

class WidgetsController < ApplicationController
2011-02-04 04:13:41 +00:00
impressionist :actions=>[:show,:index]
def show
end
def index
end
def new
end
end