No commit activity in last 3 years
No release in over 3 years
The Rails View Annotator makes it easy to find out which partial generated which output
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Rails View Annotator

Purpose

The Rails View Annotator wraps the rendering of Rails partials with html comments indicating the disk location of the rendered partial.

Usage

Simply add the gem to your Gemfile's development block.

group :development do
  gem 'rails_view_annotator'
end

Now rendered content will have instructive comments.

<!-- begin: app/views/user/_bio.html.haml (from app/views/user/show.html.haml:4) -->
<div class='bio'>Ed's Bio</div>
<!-- end: app/views/user/_bio.html.haml (from app/views/user/show.html.haml:4) -->

License

WTFPL