| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- module Docs
- class Rails < Rdoc
- # Generated with:
- # find \
- # actionmailer \
- # actionpack \
- # activemodel \
- # 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.0.1'
- 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.html
- ActionController/Instrumentation.html
- ActionController/ModelNaming.html
- ActionController/Rendering.html
- ActionController/Rescue.html
- ActionController/UrlFor.html
- ActionDispatch/DebugExceptions.htnl
- ActionDispatch/Http/FilterParameters.html
- ActionDispatch/Http/URL.html
- ActionDispatch/Integration/Runner.html
- ActionDispatch/Integration/Session.html
- ActionDispatch/Reloader.html
- ActionDispatch/RequestId.html
- ActionDispatch/Routing/HtmlTableFormatter.html
- ActionDispatch/Routing/Mapper.html
- ActionDispatch/ShowExceptions.html
- ActionView.html
- ActionView/Context.html
- ActionView/DependencyTracker/ERBTracker.html
- ActionView/FileSystemResolver.html
- ActionView/FixtureResolver.html
- ActionView/LogSubscriber.html
- ActionView/ModelNaming.html
- ActionView/Template/Handlers/Erubis.html
- ActiveModel.html
- ActiveModel/Lint/Tests.html
- ActiveRecord.html
- ActiveRecord/DynamicMatchers/Finder.html
- ActiveRecord/Sanitization.html
- ActiveRecord/Tasks/DatabaseTasks.html
- ActiveSupport.html
- ActiveSupport/Configurable/Configuration.html
- ActiveSupport/Dependencies/WatchStack.html
- ActiveSupport/DescendantsTracker.html
- ActiveSupport/FileUpdateChecker.html
- ActiveSupport/Notifications/Fanout.html
- ActiveSupport/Testing/ConstantLookup.html
- ActiveSupport/Testing/Declarative.html
- ActiveSupport/Testing/Isolation/Subprocess.html
- Rails/API/Task.html
- Rails/ConsoleMethods.html)
- options[:skip_patterns] = [
- /\AAbstractController\/ViewPaths/,
- /\AActionController\/Caching(?!\/Fragments|\.)/,
- /\AActionController\/HideActions/,
- /\AActionController\/RequestForgeryProtection\/ProtectionMethods/,
- /\AActionController\/Test/,
- /\AActionDispatch\/RemoteIp/,
- /\AActionDispatch\/Test/,
- /\AActionMailer\/DeliveryMethods/,
- /\AActionView\/LookupContext/,
- /\AActionView\/Resolver/,
- /\AActiveRecord\/ConnectionAdapters\/(?!DatabaseStatements|SchemaStatements|Table)/,
- /\AActiveSupport\/JSON\//,
- /\AActiveSupport\/Multibyte\/Unicode\//,
- /\AActiveSupport\/XML/i,
- /\ALogger/,
- /\ASourceAnnotationExtractor/]
- options[:attribution] = <<-HTML
- © 2004–2013 David Heinemeier Hansson<br>
- Licensed under the MIT License.
- HTML
- end
- end
|