| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- module Docs
- class Rails < Rdoc
- # Generated with:
- # find \
- # actionmailer \
- # actionpack \
- # actionview \
- # activemodel \
- # activejob \
- # activerecord \
- # activesupport \
- # railties \
- # -name '*.rb' \
- # -not -name 'version.rb' \
- # -not -wholename '*generators/*' \
- # -not -wholename '*test/*' \
- # -not -wholename '*examples/*' \
- # | xargs \
- # rdoc --format=darkfish --no-line-numbers --op=rdoc --visibility=public
- self.name = 'Ruby on Rails'
- self.slug = 'rails'
- self.version = '4.2.0'
- self.dir = '/Users/Thibaut/DevDocs/Docs/RDoc/Rails'
- html_filters.replace 'rdoc/entries', 'rails/entries'
- options[:root_title] = 'Ruby on Rails'
- options[:skip] += %w(
- AbstractController/Callbacks.html
- AbstractController/UrlFor.html
- ActionController/Instrumentation.html
- ActionController/Rendering.html
- ActionDispatch/DebugExceptions.html
- ActionDispatch/Http/URL.html
- ActionDispatch/Journey/Parser.html
- ActionDispatch/Reloader.html
- ActionDispatch/RequestId.html
- ActionDispatch/Routing/HtmlTableFormatter.html
- ActionDispatch/Routing/Mapper.html
- ActionDispatch/Routing/RouteSet.html
- ActionDispatch/ShowExceptions.html
- ActionView/FileSystemResolver.html
- ActionView/FixtureResolver.html
- ActionView/LogSubscriber.html
- ActionView/Template/Handlers/Erubis.html
- ActionView/TestCase/Behavior/RenderedViewsCollection.html
- ActiveRecord/DynamicMatchers/Finder.html
- ActiveRecord/Sanitization.html
- ActiveRecord/Tasks/DatabaseTasks.html
- ActiveSupport/Configurable/Configuration.html
- ActiveSupport/Dependencies/WatchStack.html
- ActiveSupport/DescendantsTracker.html
- ActiveSupport/FileUpdateChecker.html
- ActiveSupport/Notifications/Fanout.html
- ActiveSupport/Testing/Isolation/Subprocess.html
- Rails/API/Task.html)
- options[:skip_patterns] += [
- /\AActionController\/Caching(?!\/Fragments|\.)/,
- /\AActionController\/RequestForgeryProtection\/ProtectionMethods/,
- /\AActionController\/Testing/,
- /\AActionDispatch\/RemoteIp/,
- /\AActionView\/LookupContext/,
- /\AActionView\/Resolver/,
- /\AActiveSupport\/Multibyte\/Unicode\//,
- /\AActiveSupport\/XML/i,
- /\ASourceAnnotationExtractor/]
- options[:attribution] = <<-HTML
- © 2004–2014 David Heinemeier Hansson<br>
- Licensed under the MIT License.
- HTML
- end
- end
|