impressionist/test_app/app/controllers/widgets_controller.rb

11 lines
149 B
Ruby

class WidgetsController < ApplicationController
impressionist :actions=>[:show,:index]
def show
end
def index
end
def new
end
end