mhartl / rails-footnotes forked from drnic/rails-footnotes

Every Rails page has footnotes that link give request information and link back to your source via TextMate [extracted from Rails TextMate bundle project]

rails-footnotes / init.rb
f9a9e706 » josevalim 2008-06-05 Footnotes v3.2: Now you can... 1 # Footnotes is divided in three main files:
93292a67 » josevalim 2008-05-12 Footnotes v3.0 - Working in... 2 #
f9a9e706 » josevalim 2008-06-05 Footnotes v3.2: Now you can... 3 # * initialiazer.rb: Initialize the plugin and apply the footnotes as an after_filter;
93292a67 » josevalim 2008-05-12 Footnotes v3.0 - Working in... 4 #
f9a9e706 » josevalim 2008-06-05 Footnotes v3.2: Now you can... 5 # * footnotes.rb: Is the core and adds the debug options at the bottom of each page;
93292a67 » josevalim 2008-05-12 Footnotes v3.0 - Working in... 6 #
f9a9e706 » josevalim 2008-06-05 Footnotes v3.2: Now you can... 7 # * backtracer.rb: Append links to tour favorite editor in backtrace pages.
6446c1c5 » josevalim 2008-06-03 Added support to cherry pic... 8 #
29065eba » msheets 2007-08-28 Renaming bundle to "Ruby on... 9 if (ENV['RAILS_ENV'] == 'development')
f9a9e706 » josevalim 2008-06-05 Footnotes v3.2: Now you can... 10 dir = File.dirname(__FILE__)
11 require File.join(dir,'lib','footnotes')
9bf8344b » mhartl 2008-07-14 Changed 'initializer' to 'l... 12 require File.join(dir,'lib','loader')
f9a9e706 » josevalim 2008-06-05 Footnotes v3.2: Now you can... 13 require File.join(dir,'lib','backtracer')
34ad6c6c » kevin 2008-03-08 This is a merge from the gi... 14
f9a9e706 » josevalim 2008-06-05 Footnotes v3.2: Now you can... 15 Footnotes::Filter.prefix ||= 'txmt://open?url=file://' if RUBY_PLATFORM.include?('darwin')
29065eba » msheets 2007-08-28 Renaming bundle to "Ruby on... 16 end