1
0

rails.rb 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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.1.6'
  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/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/FileSystemResolver.html
  46. ActionView/FixtureResolver.html
  47. ActionView/LogSubscriber.html
  48. ActionView/ModelNaming.html
  49. ActionView/Template/Handlers/Erubis.html
  50. ActiveModel.html
  51. ActiveRecord.html
  52. ActiveRecord/DynamicMatchers/Finder.html
  53. ActiveRecord/Sanitization.html
  54. ActiveRecord/Tasks/DatabaseTasks.html
  55. ActiveSupport.html
  56. ActiveSupport/Configurable/Configuration.html
  57. ActiveSupport/Dependencies/WatchStack.html
  58. ActiveSupport/DescendantsTracker.html
  59. ActiveSupport/FileUpdateChecker.html
  60. ActiveSupport/Notifications/Fanout.html
  61. ActiveSupport/Testing/ConstantLookup.html
  62. ActiveSupport/Testing/Declarative.html
  63. ActiveSupport/Testing/Isolation/Subprocess.html
  64. Rails/API/Task.html)
  65. options[:skip_patterns] = [
  66. /\AAbstractController\/ViewPaths/,
  67. /\AActionController\/Caching(?!\/Fragments|\.)/,
  68. /\AActionController\/HideActions/,
  69. /\AActionController\/RequestForgeryProtection\/ProtectionMethods/,
  70. /\AActionController\/Testing/,
  71. /\AActionDispatch\/RemoteIp/,
  72. /\AActionView\/LookupContext/,
  73. /\AActionView\/Resolver/,
  74. /\AActiveRecord\/ConnectionAdapters\/(?!DatabaseStatements|SchemaStatements|Table)/,
  75. /\AActiveSupport\/JSON\//,
  76. /\AActiveSupport\/Multibyte\/Unicode\//,
  77. /\AActiveSupport\/XML/i,
  78. /\ASourceAnnotationExtractor/]
  79. options[:attribution] = <<-HTML
  80. &copy; 2004&ndash;2014 David Heinemeier Hansson<br>
  81. Licensed under the MIT License.
  82. HTML
  83. end
  84. end