Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
## index.rhtml <%= link_to_remote 'Join us!', :url => { :controller => 'users', :action => 'create' }, :method => :get, :href => { :controller => 'users', :action => 'create' } %> ## users_controller.rb def create # Petición (Ajax o no) con POST - Se crea el usuario if request.post? @user = User.new #... end # Petición Ajax - Render de la vista sin el layout render :layout => false if request.xhr? end
This paste will be private.
From the Design Piracy series on my blog: