Sha256: f948c5037e52b70d4514a7314c8dd7575dbaf1473ea372e45abd105bf926e03f
Contents?: true
Size: 1.07 KB
Versions: 6
Compression:
Stored size: 1.07 KB
Contents
[[Rails Footnotes|https://github.com/josevalim/rails-footnotes]] is a helpful plugin that displays footnotes in your application for easy debugging, such as sessions, request parameters, cookies, filter chain, routes, queries, etc. Installing Rails Footnotes is very easy, just add this to your Gemfile: ```ruby gem 'rails-footnotes', '>= 3.7', :group => :development ``` And add something like this to config/initializers/footnotes.rb to run the Footnotes plugin: ```ruby if defined?(Footnotes) && Rails.env.development? Footnotes.run! end ``` To add RSolr debugging information to the footnotes panel, you can use the [[RSolr Footnotes|https://github.com/cbeer/rsolr-footnotes]] gem by adding this to your Gemfile: ```ruby gem "rsolr-footnotes", :group => :development ``` RSolr footnotes will capture every solr request with basic performance information and provide a link back to the Solr request URL. [[https://github.com/projectblacklight/projectblacklight.github.com/raw/master/images/rsolr_footnotes_example.png|frame|alt=Example of RSolr Footnotes in the Blacklight Demo App]]
Version data entries
6 entries across 6 versions & 1 rubygems