Skip to content

Instantly share code, notes, and snippets.

@wadtech
Created April 19, 2015 05:57
Show Gist options
  • Save wadtech/910d4f7723e6329c8945 to your computer and use it in GitHub Desktop.
Save wadtech/910d4f7723e6329c8945 to your computer and use it in GitHub Desktop.
Survey show
#config/routes.rb
Rails.application.routes.draw do
get '/surveys', to: 'surveys#show'
end
#app/views/surveys/show.html.erb
show.html.erb
#app/controllers/surveys_controller.rb
class SurveysController < ApplicationController
def show
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment