1
0

rails.rb 3.2 KB

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