rails new

This commit is contained in:
Andres Keskküla 2014-06-10 11:43:04 +03:00
parent 480ed98a25
commit 556898352f
46 changed files with 917 additions and 2 deletions

View file

@ -0,0 +1,5 @@
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
end