Skip to content

chan-san/view_source_map

 
 

Repository files navigation

ViewSourceMap

This is a Rails plugin to insert the path name of a rendered partial view as HTML comment in development environment.

Usage

In your Gemfile

group :development do
  gem "view_source_map"
end

and launch your rails server in development environment:

$ rails s

then see the source of your page:

Tips

Sometimes this adds too much noise to the html when you're developing. There is a simple way to turn it off.

$ DISABLE_VIEW_SOURCE_MAP=1 rails s

or

<%= render "example_disabled", view_source_map: false %>
<%= render partial: "example_disabled_partial", view_source_map: false %>

About

Rails plugin to view source map

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 84.2%
  • HTML 11.0%
  • JavaScript 2.6%
  • CSS 2.2%