| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- module Docs
- class Rails < Rdoc
- include FixInternalUrlsBehavior
- self.name = 'Ruby on Rails'
- self.slug = 'rails'
- self.dir = '/Users/Thibaut/DevDocs/Docs/RDoc/Rails'
- self.links = {
- home: 'http://rubyonrails.org/',
- code: 'https://github.com/rails/rails'
- }
- html_filters.replace 'rdoc/entries', 'rails/entries'
- options[:root_title] = 'Ruby on Rails'
- options[:skip] += %w(
- ActionController/Instrumentation.html
- ActionController/Rendering.html
- ActionDispatch/DebugExceptions.html
- ActionDispatch/Journey/Parser.html
- ActionDispatch/Reloader.html
- ActionDispatch/Routing/HtmlTableFormatter.html
- ActionDispatch/ShowExceptions.html
- ActionView/FixtureResolver.html
- ActionView/LogSubscriber.html
- ActionView/TestCase/Behavior/RenderedViewsCollection.html
- ActiveRecord/Tasks/DatabaseTasks.html
- ActiveSupport/Dependencies/WatchStack.html
- ActiveSupport/Notifications/Fanout.html)
- options[:skip_patterns] += [
- /\AActionController\/Testing/,
- /\AActionView\/LookupContext/,
- /\AActionView\/Resolver/,
- /\AActiveSupport\/Multibyte\/Unicode\//,
- /\AActiveSupport\/XML/i,
- /\ASourceAnnotationExtractor/,
- /\AI18n\/Railtie/,
- /\AMinitest/,
- /\ARails\/API/,
- /\ARails\/AppBuilder/,
- /\ARails\/PluginBuilder/,
- /\ARails\/Generators\/Testing/]
- options[:attribution] = <<-HTML
- © 2004–2016 David Heinemeier Hansson<br>
- Licensed under the MIT License.
- HTML
- version '5.0' do
- self.release = '5.0.1'
- end
- version '4.2' do
- self.release = '4.2.7'
- end
- version '4.1' do
- self.release = '4.1.16'
- end
- end
- end
|