James Wilding's Weblog

Rails Code

[ror]
class ApplicationController < ActionController::Base

rescue_from(SomeError) { redirect_to error_page }

def index
@posts = Post.find(:all)
end
end
[/ror]

Image Test

What if I upload an image?

picture-11

Test

[ruby]
puts "hello world".capitalize
[/ruby]