projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Use sshfs in preference to nfs for vagrant file sharing
[rails.git]
/
app
/
controllers
/
errors_controller.rb
1
class ErrorsController < ApplicationController
2
layout "error"
3
4
def forbidden
5
render :status => :forbidden
6
end
7
8
def not_found
9
render :status => :not_found
10
end
11
12
def internal_server_error
13
render :status => :internal_server_error
14
end
15
end