nesquena/rabl

View on GitHub
fixtures/ashared/views/posts/show.rabl

Summary

Maintainability
Test Coverage
object @post
cache @post

attributes :title, :body
attributes :created_at => :posted_at

child :user do
  extends "users/show"
end

glue :user do
  attributes :username => :author_name
end

code(:created_date) do |p|
  partial("posts/date", :object => p.created_at)
end