Sha256: d65e52f6b2d16538e2466f2fc86c1ffd3b26e82e9cdd7d62b8dab39b4ea344b5

Contents?: true

Size: 581 Bytes

Versions: 1

Compression:

Stored size: 581 Bytes

Contents

dir = File.dirname(__FILE__)
require File.join(dir, 'rails-footnotes', 'footnotes')
require File.join(dir, 'rails-footnotes', 'backtracer')

# Load all notes
#
Dir[File.join(dir, 'rails-footnotes', 'notes', '*.rb')].each do |note|
  require note
end

# The footnotes are applied by default to all actions. You can change this
# behavior commenting the after_filter line below and putting it in Your
# application. Then you can cherrypick in which actions it will appear.
#
class ActionController::Base
  prepend_before_filter Footnotes::Filter
  after_filter Footnotes::Filter
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
omghax-rails-footnotes-3.6.1 lib/rails-footnotes.rb