Methods
I
S
Instance Public methods
index()
# File actionview/test/template/url_helper_test.rb, line 776
def index
  @workshop = Workshop.new(nil)
  render inline: "<%= url_for(@workshop) %>\n<%= link_to('Workshop', @workshop) %>"
end
show()
# File actionview/test/template/url_helper_test.rb, line 781
def show
  @workshop = Workshop.new(params[:id])
  render inline: "<%= url_for(@workshop) %>\n<%= link_to('Workshop', @workshop) %>"
end