InPlaceEditing
==============

Example:

  # Controller
  class BlogController < ApplicationController
    in_place_edit_for :post, :title
  end

  # View
  <%= in_place_editor_field :post, 'title' %>
  
  # Conditional editor field
  <%= in_place_editor_field_if post.editable_by?(current_user), :post, 'title' %>

Copyright (c) 2007 David Heinemeier Hansson, released under the MIT license