mhartl / rails-footnotes forked from drnic/rails-footnotes
- Source
- Commits
- Network (12)
- Issues (0)
- Downloads (2)
- Wiki (1)
- Graphs
-
Branch:
mhartl
rails-footnotes / init.rb
| f9a9e706 » | josevalim | 2008-06-05 | 1 | # Footnotes is divided in three main files: | |
| 93292a67 » | josevalim | 2008-05-12 | 2 | # | |
| f9a9e706 » | josevalim | 2008-06-05 | 3 | # * initialiazer.rb: Initialize the plugin and apply the footnotes as an after_filter; | |
| 93292a67 » | josevalim | 2008-05-12 | 4 | # | |
| f9a9e706 » | josevalim | 2008-06-05 | 5 | # * footnotes.rb: Is the core and adds the debug options at the bottom of each page; | |
| 93292a67 » | josevalim | 2008-05-12 | 6 | # | |
| f9a9e706 » | josevalim | 2008-06-05 | 7 | # * backtracer.rb: Append links to tour favorite editor in backtrace pages. | |
| 6446c1c5 » | josevalim | 2008-06-03 | 8 | # | |
| 29065eba » | msheets | 2007-08-28 | 9 | if (ENV['RAILS_ENV'] == 'development') | |
| f9a9e706 » | josevalim | 2008-06-05 | 10 | dir = File.dirname(__FILE__) | |
| 11 | require File.join(dir,'lib','footnotes') | ||||
| 9bf8344b » | mhartl | 2008-07-14 | 12 | require File.join(dir,'lib','loader') | |
| f9a9e706 » | josevalim | 2008-06-05 | 13 | require File.join(dir,'lib','backtracer') | |
| 34ad6c6c » | kevin | 2008-03-08 | 14 | ||
| f9a9e706 » | josevalim | 2008-06-05 | 15 | Footnotes::Filter.prefix ||= 'txmt://open?url=file://' if RUBY_PLATFORM.include?('darwin') | |
| 29065eba » | msheets | 2007-08-28 | 16 | end | |
