rails.rb 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. module Docs
  2. class Rails < Rdoc
  3. # Generated with:
  4. # find \
  5. # actionmailer \
  6. # actionpack \
  7. # actionview \
  8. # activemodel \
  9. # activerecord \
  10. # activesupport \
  11. # railties \
  12. # -name '*.rb' \
  13. # -not -name 'version.rb' \
  14. # -not -wholename '*generators/*' \
  15. # -not -wholename '*test/*' \
  16. # -not -wholename '*examples/*' \
  17. # | xargs \
  18. # rdoc --format=darkfish --no-line-numbers --op=rdoc --visibility=public
  19. self.name = 'Ruby on Rails'
  20. self.slug = 'rails'
  21. self.version = '4.0.4'
  22. self.dir = '/Users/Thibaut/DevDocs/Docs/RDoc/Rails'
  23. html_filters.replace 'rdoc/entries', 'rails/entries'
  24. options[:root_title] = 'Ruby on Rails'
  25. options[:skip] += %w(
  26. AbstractController/Callbacks.html
  27. AbstractController/UrlFor.html
  28. ActionController.html
  29. ActionController/Instrumentation.html
  30. ActionController/ModelNaming.html
  31. ActionController/Rendering.html
  32. ActionController/Rescue.html
  33. ActionController/UrlFor.html
  34. ActionDispatch/DebugExceptions.htnl
  35. ActionDispatch/Http/FilterParameters.html
  36. ActionDispatch/Http/URL.html
  37. ActionDispatch/Integration/Runner.html
  38. ActionDispatch/Integration/Session.html
  39. ActionDispatch/Reloader.html
  40. ActionDispatch/RequestId.html
  41. ActionDispatch/Routing/HtmlTableFormatter.html
  42. ActionDispatch/Routing/Mapper.html
  43. ActionDispatch/ShowExceptions.html
  44. ActionView.html
  45. ActionView/Context.html
  46. ActionView/DependencyTracker/ERBTracker.html
  47. ActionView/FileSystemResolver.html
  48. ActionView/FixtureResolver.html
  49. ActionView/LogSubscriber.html
  50. ActionView/ModelNaming.html
  51. ActionView/Template/Handlers/Erubis.html
  52. ActiveModel.html
  53. ActiveModel/Lint/Tests.html
  54. ActiveRecord.html
  55. ActiveRecord/DynamicMatchers/Finder.html
  56. ActiveRecord/Sanitization.html
  57. ActiveRecord/Tasks/DatabaseTasks.html
  58. ActiveSupport.html
  59. ActiveSupport/Configurable/Configuration.html
  60. ActiveSupport/Dependencies/WatchStack.html
  61. ActiveSupport/DescendantsTracker.html
  62. ActiveSupport/FileUpdateChecker.html
  63. ActiveSupport/Notifications/Fanout.html
  64. ActiveSupport/Testing/ConstantLookup.html
  65. ActiveSupport/Testing/Declarative.html
  66. ActiveSupport/Testing/Isolation/Subprocess.html
  67. Rails/API/Task.html
  68. Rails/ConsoleMethods.html)
  69. options[:skip_patterns] = [
  70. /\AAbstractController\/ViewPaths/,
  71. /\AActionController\/Caching(?!\/Fragments|\.)/,
  72. /\AActionController\/HideActions/,
  73. /\AActionController\/RequestForgeryProtection\/ProtectionMethods/,
  74. /\AActionController\/Test/,
  75. /\AActionDispatch\/RemoteIp/,
  76. /\AActionDispatch\/Test/,
  77. /\AActionMailer\/DeliveryMethods/,
  78. /\AActionView\/LookupContext/,
  79. /\AActionView\/Resolver/,
  80. /\AActiveRecord\/ConnectionAdapters\/(?!DatabaseStatements|SchemaStatements|Table)/,
  81. /\AActiveSupport\/JSON\//,
  82. /\AActiveSupport\/Multibyte\/Unicode\//,
  83. /\AActiveSupport\/XML/i,
  84. /\ALogger/,
  85. /\ASourceAnnotationExtractor/]
  86. options[:attribution] = <<-HTML
  87. &copy; 2004&ndash;2014 David Heinemeier Hansson<br>
  88. Licensed under the MIT License.
  89. HTML
  90. end
  91. end