railties 3.2.22.5 → 4.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (450) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +186 -78
  3. data/README.rdoc +4 -2
  4. data/lib/rails.rb +11 -44
  5. data/lib/rails/all.rb +0 -1
  6. data/lib/rails/app_rails_loader.rb +37 -0
  7. data/lib/rails/application.rb +176 -124
  8. data/lib/rails/application/bootstrap.rb +29 -23
  9. data/lib/rails/application/configuration.rb +54 -48
  10. data/lib/rails/application/finisher.rb +8 -12
  11. data/lib/rails/application/routes_reloader.rb +2 -2
  12. data/lib/rails/backtrace_cleaner.rb +1 -16
  13. data/lib/rails/cli.rb +2 -2
  14. data/lib/rails/code_statistics.rb +30 -45
  15. data/lib/rails/code_statistics_calculator.rb +79 -0
  16. data/lib/rails/commands.rb +44 -37
  17. data/lib/rails/commands/application.rb +14 -9
  18. data/lib/rails/commands/console.rb +77 -33
  19. data/lib/rails/commands/dbconsole.rb +115 -64
  20. data/lib/rails/commands/destroy.rb +2 -3
  21. data/lib/rails/commands/generate.rb +2 -3
  22. data/lib/rails/commands/plugin_new.rb +0 -2
  23. data/lib/rails/commands/runner.rb +4 -5
  24. data/lib/rails/commands/server.rb +28 -9
  25. data/lib/rails/commands/update.rb +1 -1
  26. data/lib/rails/configuration.rb +35 -8
  27. data/lib/rails/console/app.rb +0 -4
  28. data/lib/rails/deprecation.rb +19 -0
  29. data/lib/rails/engine.rb +111 -92
  30. data/lib/rails/engine/commands.rb +1 -3
  31. data/lib/rails/engine/configuration.rb +26 -19
  32. data/lib/rails/engine/railties.rb +14 -18
  33. data/lib/rails/generators.rb +30 -50
  34. data/lib/rails/generators/actions.rb +38 -103
  35. data/lib/rails/generators/active_model.rb +14 -6
  36. data/lib/rails/generators/app_base.rb +70 -83
  37. data/lib/rails/generators/base.rb +23 -35
  38. data/lib/rails/generators/css/assets/assets_generator.rb +3 -3
  39. data/lib/rails/generators/css/scaffold/scaffold_generator.rb +3 -3
  40. data/lib/rails/generators/erb.rb +2 -2
  41. data/lib/rails/generators/erb/controller/controller_generator.rb +4 -4
  42. data/lib/rails/generators/erb/mailer/mailer_generator.rb +3 -3
  43. data/lib/rails/generators/erb/scaffold/scaffold_generator.rb +4 -4
  44. data/lib/rails/generators/erb/scaffold/templates/index.html.erb +18 -14
  45. data/lib/rails/generators/erb/scaffold/templates/show.html.erb +1 -1
  46. data/lib/rails/generators/generated_attribute.rb +51 -16
  47. data/lib/rails/generators/js/assets/assets_generator.rb +3 -3
  48. data/lib/rails/generators/migration.rb +1 -5
  49. data/lib/rails/generators/named_base.rb +20 -25
  50. data/lib/rails/generators/rails/app/app_generator.rb +40 -48
  51. data/lib/rails/generators/rails/app/templates/Gemfile +8 -7
  52. data/lib/rails/generators/rails/app/templates/README.rdoc +28 -0
  53. data/lib/rails/generators/rails/app/templates/Rakefile +0 -1
  54. data/lib/rails/generators/rails/app/templates/app/assets/javascripts/application.js.tt +2 -1
  55. data/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb.tt +5 -0
  56. data/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +2 -2
  57. data/lib/rails/generators/rails/app/templates/bin/bundle +2 -0
  58. data/lib/rails/generators/rails/app/templates/bin/rails +3 -0
  59. data/lib/rails/generators/rails/app/templates/bin/rake +3 -0
  60. data/lib/rails/generators/rails/app/templates/config/application.rb +5 -43
  61. data/lib/rails/generators/rails/app/templates/config/boot.rb +0 -2
  62. data/lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml +2 -2
  63. data/lib/rails/generators/rails/app/templates/config/databases/mysql.yml +1 -4
  64. data/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml +8 -3
  65. data/lib/rails/generators/rails/app/templates/config/databases/sqlserver.yml +57 -0
  66. data/lib/rails/generators/rails/app/templates/config/environment.rb +2 -2
  67. data/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +9 -19
  68. data/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +40 -29
  69. data/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +12 -15
  70. data/lib/rails/generators/rails/app/templates/config/initializers/filter_parameter_logging.rb +4 -0
  71. data/lib/rails/generators/rails/app/templates/config/initializers/inflections.rb +6 -5
  72. data/lib/rails/generators/rails/app/templates/config/initializers/secret_token.rb.tt +6 -1
  73. data/lib/rails/generators/rails/app/templates/config/initializers/session_store.rb.tt +1 -6
  74. data/lib/rails/generators/rails/app/templates/config/initializers/wrap_parameters.rb.tt +6 -6
  75. data/lib/rails/generators/rails/app/templates/config/locales/en.yml +20 -2
  76. data/lib/rails/generators/rails/app/templates/config/routes.rb +15 -24
  77. data/lib/rails/generators/rails/app/templates/db/seeds.rb.tt +2 -2
  78. data/lib/rails/generators/rails/app/templates/gitignore +3 -2
  79. data/lib/rails/generators/rails/app/templates/public/404.html +2 -1
  80. data/lib/rails/generators/rails/app/templates/public/422.html +1 -1
  81. data/lib/rails/generators/rails/app/templates/public/500.html +2 -1
  82. data/lib/rails/generators/rails/app/templates/public/robots.txt +1 -1
  83. data/lib/rails/generators/rails/app/templates/test/test_helper.rb +3 -1
  84. data/lib/rails/generators/rails/assets/assets_generator.rb +5 -5
  85. data/lib/rails/generators/rails/controller/USAGE +7 -7
  86. data/lib/rails/generators/rails/controller/controller_generator.rb +3 -3
  87. data/lib/rails/generators/rails/controller/templates/controller.rb +1 -1
  88. data/lib/rails/generators/rails/generator/generator_generator.rb +4 -4
  89. data/lib/rails/generators/rails/helper/USAGE +1 -1
  90. data/lib/rails/generators/rails/helper/helper_generator.rb +2 -2
  91. data/lib/rails/generators/rails/integration_test/integration_test_generator.rb +2 -2
  92. data/lib/rails/generators/rails/migration/USAGE +12 -6
  93. data/lib/rails/generators/rails/migration/migration_generator.rb +3 -3
  94. data/lib/rails/generators/rails/model/USAGE +53 -4
  95. data/lib/rails/generators/rails/model/model_generator.rb +3 -3
  96. data/lib/rails/generators/rails/plugin_new/plugin_new_generator.rb +81 -39
  97. data/lib/rails/generators/rails/plugin_new/templates/%name%.gemspec +2 -2
  98. data/lib/rails/generators/rails/plugin_new/templates/Gemfile +16 -1
  99. data/lib/rails/generators/rails/plugin_new/templates/Rakefile +3 -9
  100. data/lib/rails/generators/rails/plugin_new/templates/app/controllers/%name%/application_controller.rb.tt +0 -1
  101. data/lib/rails/generators/rails/plugin_new/templates/app/views/layouts/%name%/application.html.erb.tt +1 -1
  102. data/lib/rails/generators/rails/plugin_new/templates/{script → bin}/rails.tt +0 -0
  103. data/lib/rails/generators/rails/plugin_new/templates/gitignore +3 -0
  104. data/lib/rails/generators/rails/plugin_new/templates/lib/%name%.rb +1 -1
  105. data/lib/rails/generators/rails/plugin_new/templates/rails/application.rb +0 -1
  106. data/lib/rails/generators/rails/plugin_new/templates/rails/boot.rb +0 -1
  107. data/lib/rails/generators/rails/resource/resource_generator.rb +5 -5
  108. data/lib/rails/generators/rails/resource_route/resource_route_generator.rb +2 -2
  109. data/lib/rails/generators/rails/scaffold/scaffold_generator.rb +11 -7
  110. data/lib/rails/generators/rails/scaffold_controller/USAGE +4 -4
  111. data/lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb +9 -7
  112. data/lib/rails/generators/rails/scaffold_controller/templates/controller.rb +27 -48
  113. data/lib/rails/generators/rails/task/task_generator.rb +2 -2
  114. data/lib/rails/generators/rails/task/templates/task.rb +1 -1
  115. data/lib/rails/generators/resource_helpers.rb +3 -5
  116. data/lib/rails/generators/test_case.rb +22 -28
  117. data/lib/rails/generators/test_unit.rb +3 -3
  118. data/lib/rails/generators/test_unit/controller/controller_generator.rb +6 -6
  119. data/lib/rails/generators/test_unit/helper/helper_generator.rb +5 -5
  120. data/lib/rails/generators/test_unit/integration/integration_generator.rb +4 -4
  121. data/lib/rails/generators/test_unit/mailer/mailer_generator.rb +6 -6
  122. data/lib/rails/generators/test_unit/model/model_generator.rb +7 -7
  123. data/lib/rails/generators/test_unit/model/templates/fixtures.yml +8 -2
  124. data/lib/rails/generators/test_unit/plugin/plugin_generator.rb +4 -4
  125. data/lib/rails/generators/test_unit/plugin/templates/test_helper.rb +1 -2
  126. data/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +10 -19
  127. data/lib/rails/generators/test_unit/scaffold/templates/functional_test.rb +5 -5
  128. data/lib/rails/info.rb +3 -3
  129. data/lib/rails/info_controller.rb +26 -8
  130. data/lib/rails/initializable.rb +2 -2
  131. data/lib/rails/paths.rb +59 -54
  132. data/lib/rails/rack/debugger.rb +2 -2
  133. data/lib/rails/rack/logger.rb +33 -8
  134. data/lib/rails/railtie.rb +24 -24
  135. data/lib/rails/railtie/configurable.rb +1 -1
  136. data/lib/rails/railtie/configuration.rb +15 -5
  137. data/lib/rails/ruby_version_check.rb +3 -13
  138. data/lib/rails/rubyprof_ext.rb +1 -1
  139. data/lib/rails/source_annotation_extractor.rb +40 -17
  140. data/lib/rails/tasks/annotations.rake +1 -1
  141. data/lib/rails/tasks/documentation.rake +10 -57
  142. data/lib/rails/tasks/engine.rake +1 -1
  143. data/lib/rails/tasks/framework.rake +9 -9
  144. data/lib/rails/tasks/log.rake +18 -4
  145. data/lib/rails/tasks/middleware.rake +1 -1
  146. data/lib/rails/tasks/misc.rake +2 -9
  147. data/lib/rails/tasks/routes.rake +4 -6
  148. data/lib/rails/tasks/statistics.rake +8 -2
  149. data/lib/rails/tasks/tmp.rake +12 -4
  150. data/lib/rails/templates/layouts/application.html.erb +36 -0
  151. data/lib/rails/templates/rails/info/properties.html.erb +1 -0
  152. data/lib/rails/templates/rails/info/routes.html.erb +9 -0
  153. data/lib/rails/{generators/rails/app/templates/public/index.html → templates/rails/welcome/index.html.erb} +18 -14
  154. data/lib/rails/test_help.rb +6 -29
  155. data/lib/rails/test_unit/railtie.rb +2 -3
  156. data/lib/rails/test_unit/testing.rake +45 -33
  157. data/lib/rails/version.rb +4 -4
  158. data/lib/rails/welcome_controller.rb +7 -0
  159. metadata +86 -378
  160. data/guides/assets/images/belongs_to.png +0 -0
  161. data/guides/assets/images/book_icon.gif +0 -0
  162. data/guides/assets/images/bullet.gif +0 -0
  163. data/guides/assets/images/challenge.png +0 -0
  164. data/guides/assets/images/chapters_icon.gif +0 -0
  165. data/guides/assets/images/check_bullet.gif +0 -0
  166. data/guides/assets/images/credits_pic_blank.gif +0 -0
  167. data/guides/assets/images/csrf.png +0 -0
  168. data/guides/assets/images/customized_error_messages.png +0 -0
  169. data/guides/assets/images/edge_badge.png +0 -0
  170. data/guides/assets/images/error_messages.png +0 -0
  171. data/guides/assets/images/feature_tile.gif +0 -0
  172. data/guides/assets/images/footer_tile.gif +0 -0
  173. data/guides/assets/images/fxn.png +0 -0
  174. data/guides/assets/images/grey_bullet.gif +0 -0
  175. data/guides/assets/images/habtm.png +0 -0
  176. data/guides/assets/images/has_many.png +0 -0
  177. data/guides/assets/images/has_many_through.png +0 -0
  178. data/guides/assets/images/has_one.png +0 -0
  179. data/guides/assets/images/has_one_through.png +0 -0
  180. data/guides/assets/images/header_backdrop.png +0 -0
  181. data/guides/assets/images/header_tile.gif +0 -0
  182. data/guides/assets/images/i18n/demo_html_safe.png +0 -0
  183. data/guides/assets/images/i18n/demo_localized_pirate.png +0 -0
  184. data/guides/assets/images/i18n/demo_translated_en.png +0 -0
  185. data/guides/assets/images/i18n/demo_translated_pirate.png +0 -0
  186. data/guides/assets/images/i18n/demo_translation_missing.png +0 -0
  187. data/guides/assets/images/i18n/demo_untranslated.png +0 -0
  188. data/guides/assets/images/icons/README +0 -5
  189. data/guides/assets/images/icons/callouts/1.png +0 -0
  190. data/guides/assets/images/icons/callouts/10.png +0 -0
  191. data/guides/assets/images/icons/callouts/11.png +0 -0
  192. data/guides/assets/images/icons/callouts/12.png +0 -0
  193. data/guides/assets/images/icons/callouts/13.png +0 -0
  194. data/guides/assets/images/icons/callouts/14.png +0 -0
  195. data/guides/assets/images/icons/callouts/15.png +0 -0
  196. data/guides/assets/images/icons/callouts/2.png +0 -0
  197. data/guides/assets/images/icons/callouts/3.png +0 -0
  198. data/guides/assets/images/icons/callouts/4.png +0 -0
  199. data/guides/assets/images/icons/callouts/5.png +0 -0
  200. data/guides/assets/images/icons/callouts/6.png +0 -0
  201. data/guides/assets/images/icons/callouts/7.png +0 -0
  202. data/guides/assets/images/icons/callouts/8.png +0 -0
  203. data/guides/assets/images/icons/callouts/9.png +0 -0
  204. data/guides/assets/images/icons/caution.png +0 -0
  205. data/guides/assets/images/icons/example.png +0 -0
  206. data/guides/assets/images/icons/home.png +0 -0
  207. data/guides/assets/images/icons/important.png +0 -0
  208. data/guides/assets/images/icons/next.png +0 -0
  209. data/guides/assets/images/icons/note.png +0 -0
  210. data/guides/assets/images/icons/prev.png +0 -0
  211. data/guides/assets/images/icons/tip.png +0 -0
  212. data/guides/assets/images/icons/up.png +0 -0
  213. data/guides/assets/images/icons/warning.png +0 -0
  214. data/guides/assets/images/jaimeiniesta.jpg +0 -0
  215. data/guides/assets/images/nav_arrow.gif +0 -0
  216. data/guides/assets/images/polymorphic.png +0 -0
  217. data/guides/assets/images/posts_index.png +0 -0
  218. data/guides/assets/images/radar.png +0 -0
  219. data/guides/assets/images/rails_guides_kindle_cover.jpg +0 -0
  220. data/guides/assets/images/rails_guides_logo.gif +0 -0
  221. data/guides/assets/images/rails_logo_remix.gif +0 -0
  222. data/guides/assets/images/rails_welcome.png +0 -0
  223. data/guides/assets/images/session_fixation.png +0 -0
  224. data/guides/assets/images/tab_grey.gif +0 -0
  225. data/guides/assets/images/tab_info.gif +0 -0
  226. data/guides/assets/images/tab_note.gif +0 -0
  227. data/guides/assets/images/tab_red.gif +0 -0
  228. data/guides/assets/images/tab_yellow.gif +0 -0
  229. data/guides/assets/images/tab_yellow.png +0 -0
  230. data/guides/assets/images/validation_error_messages.png +0 -0
  231. data/guides/assets/images/vijaydev.jpg +0 -0
  232. data/guides/assets/javascripts/guides.js +0 -7
  233. data/guides/assets/javascripts/syntaxhighlighter/shBrushAS3.js +0 -59
  234. data/guides/assets/javascripts/syntaxhighlighter/shBrushAppleScript.js +0 -75
  235. data/guides/assets/javascripts/syntaxhighlighter/shBrushBash.js +0 -59
  236. data/guides/assets/javascripts/syntaxhighlighter/shBrushCSharp.js +0 -65
  237. data/guides/assets/javascripts/syntaxhighlighter/shBrushColdFusion.js +0 -100
  238. data/guides/assets/javascripts/syntaxhighlighter/shBrushCpp.js +0 -97
  239. data/guides/assets/javascripts/syntaxhighlighter/shBrushCss.js +0 -91
  240. data/guides/assets/javascripts/syntaxhighlighter/shBrushDelphi.js +0 -55
  241. data/guides/assets/javascripts/syntaxhighlighter/shBrushDiff.js +0 -41
  242. data/guides/assets/javascripts/syntaxhighlighter/shBrushErlang.js +0 -52
  243. data/guides/assets/javascripts/syntaxhighlighter/shBrushGroovy.js +0 -67
  244. data/guides/assets/javascripts/syntaxhighlighter/shBrushJScript.js +0 -52
  245. data/guides/assets/javascripts/syntaxhighlighter/shBrushJava.js +0 -57
  246. data/guides/assets/javascripts/syntaxhighlighter/shBrushJavaFX.js +0 -58
  247. data/guides/assets/javascripts/syntaxhighlighter/shBrushPerl.js +0 -72
  248. data/guides/assets/javascripts/syntaxhighlighter/shBrushPhp.js +0 -88
  249. data/guides/assets/javascripts/syntaxhighlighter/shBrushPlain.js +0 -33
  250. data/guides/assets/javascripts/syntaxhighlighter/shBrushPowerShell.js +0 -74
  251. data/guides/assets/javascripts/syntaxhighlighter/shBrushPython.js +0 -64
  252. data/guides/assets/javascripts/syntaxhighlighter/shBrushRuby.js +0 -55
  253. data/guides/assets/javascripts/syntaxhighlighter/shBrushSass.js +0 -94
  254. data/guides/assets/javascripts/syntaxhighlighter/shBrushScala.js +0 -51
  255. data/guides/assets/javascripts/syntaxhighlighter/shBrushSql.js +0 -66
  256. data/guides/assets/javascripts/syntaxhighlighter/shBrushVb.js +0 -56
  257. data/guides/assets/javascripts/syntaxhighlighter/shBrushXml.js +0 -69
  258. data/guides/assets/javascripts/syntaxhighlighter/shCore.js +0 -17
  259. data/guides/assets/stylesheets/fixes.css +0 -16
  260. data/guides/assets/stylesheets/kindle.css +0 -11
  261. data/guides/assets/stylesheets/main.css +0 -453
  262. data/guides/assets/stylesheets/print.css +0 -52
  263. data/guides/assets/stylesheets/reset.css +0 -43
  264. data/guides/assets/stylesheets/style.css +0 -13
  265. data/guides/assets/stylesheets/syntaxhighlighter/shCore.css +0 -226
  266. data/guides/assets/stylesheets/syntaxhighlighter/shCoreDefault.css +0 -328
  267. data/guides/assets/stylesheets/syntaxhighlighter/shCoreDjango.css +0 -331
  268. data/guides/assets/stylesheets/syntaxhighlighter/shCoreEclipse.css +0 -339
  269. data/guides/assets/stylesheets/syntaxhighlighter/shCoreEmacs.css +0 -324
  270. data/guides/assets/stylesheets/syntaxhighlighter/shCoreFadeToGrey.css +0 -328
  271. data/guides/assets/stylesheets/syntaxhighlighter/shCoreMDUltra.css +0 -324
  272. data/guides/assets/stylesheets/syntaxhighlighter/shCoreMidnight.css +0 -324
  273. data/guides/assets/stylesheets/syntaxhighlighter/shCoreRDark.css +0 -324
  274. data/guides/assets/stylesheets/syntaxhighlighter/shThemeDefault.css +0 -117
  275. data/guides/assets/stylesheets/syntaxhighlighter/shThemeDjango.css +0 -120
  276. data/guides/assets/stylesheets/syntaxhighlighter/shThemeEclipse.css +0 -128
  277. data/guides/assets/stylesheets/syntaxhighlighter/shThemeEmacs.css +0 -113
  278. data/guides/assets/stylesheets/syntaxhighlighter/shThemeFadeToGrey.css +0 -117
  279. data/guides/assets/stylesheets/syntaxhighlighter/shThemeMDUltra.css +0 -113
  280. data/guides/assets/stylesheets/syntaxhighlighter/shThemeMidnight.css +0 -113
  281. data/guides/assets/stylesheets/syntaxhighlighter/shThemeRDark.css +0 -113
  282. data/guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css +0 -116
  283. data/guides/code/getting_started/Gemfile +0 -38
  284. data/guides/code/getting_started/README.rdoc +0 -261
  285. data/guides/code/getting_started/Rakefile +0 -7
  286. data/guides/code/getting_started/app/assets/images/rails.png +0 -0
  287. data/guides/code/getting_started/app/assets/javascripts/application.js +0 -15
  288. data/guides/code/getting_started/app/assets/javascripts/comments.js.coffee +0 -3
  289. data/guides/code/getting_started/app/assets/javascripts/home.js.coffee +0 -3
  290. data/guides/code/getting_started/app/assets/javascripts/posts.js.coffee +0 -3
  291. data/guides/code/getting_started/app/assets/stylesheets/application.css +0 -13
  292. data/guides/code/getting_started/app/assets/stylesheets/comments.css.scss +0 -3
  293. data/guides/code/getting_started/app/assets/stylesheets/home.css.scss +0 -3
  294. data/guides/code/getting_started/app/assets/stylesheets/posts.css.scss +0 -3
  295. data/guides/code/getting_started/app/assets/stylesheets/scaffolds.css.scss +0 -56
  296. data/guides/code/getting_started/app/controllers/application_controller.rb +0 -3
  297. data/guides/code/getting_started/app/controllers/comments_controller.rb +0 -16
  298. data/guides/code/getting_started/app/controllers/home_controller.rb +0 -5
  299. data/guides/code/getting_started/app/controllers/posts_controller.rb +0 -84
  300. data/guides/code/getting_started/app/helpers/application_helper.rb +0 -2
  301. data/guides/code/getting_started/app/helpers/comments_helper.rb +0 -2
  302. data/guides/code/getting_started/app/helpers/home_helper.rb +0 -2
  303. data/guides/code/getting_started/app/helpers/posts_helper.rb +0 -5
  304. data/guides/code/getting_started/app/models/comment.rb +0 -3
  305. data/guides/code/getting_started/app/models/post.rb +0 -11
  306. data/guides/code/getting_started/app/models/tag.rb +0 -3
  307. data/guides/code/getting_started/app/views/comments/_comment.html.erb +0 -15
  308. data/guides/code/getting_started/app/views/comments/_form.html.erb +0 -13
  309. data/guides/code/getting_started/app/views/home/index.html.erb +0 -2
  310. data/guides/code/getting_started/app/views/layouts/application.html.erb +0 -14
  311. data/guides/code/getting_started/app/views/posts/_form.html.erb +0 -32
  312. data/guides/code/getting_started/app/views/posts/edit.html.erb +0 -6
  313. data/guides/code/getting_started/app/views/posts/index.html.erb +0 -27
  314. data/guides/code/getting_started/app/views/posts/new.html.erb +0 -5
  315. data/guides/code/getting_started/app/views/posts/show.html.erb +0 -31
  316. data/guides/code/getting_started/app/views/tags/_form.html.erb +0 -12
  317. data/guides/code/getting_started/config.ru +0 -4
  318. data/guides/code/getting_started/config/application.rb +0 -59
  319. data/guides/code/getting_started/config/boot.rb +0 -6
  320. data/guides/code/getting_started/config/database.yml +0 -25
  321. data/guides/code/getting_started/config/environment.rb +0 -5
  322. data/guides/code/getting_started/config/environments/development.rb +0 -37
  323. data/guides/code/getting_started/config/environments/production.rb +0 -67
  324. data/guides/code/getting_started/config/environments/test.rb +0 -37
  325. data/guides/code/getting_started/config/initializers/backtrace_silencers.rb +0 -7
  326. data/guides/code/getting_started/config/initializers/inflections.rb +0 -15
  327. data/guides/code/getting_started/config/initializers/mime_types.rb +0 -5
  328. data/guides/code/getting_started/config/initializers/secret_token.rb +0 -7
  329. data/guides/code/getting_started/config/initializers/session_store.rb +0 -8
  330. data/guides/code/getting_started/config/initializers/wrap_parameters.rb +0 -14
  331. data/guides/code/getting_started/config/locales/en.yml +0 -5
  332. data/guides/code/getting_started/config/routes.rb +0 -64
  333. data/guides/code/getting_started/db/migrate/20110901012504_create_posts.rb +0 -11
  334. data/guides/code/getting_started/db/migrate/20110901012815_create_comments.rb +0 -12
  335. data/guides/code/getting_started/db/migrate/20110901013701_create_tags.rb +0 -11
  336. data/guides/code/getting_started/db/schema.rb +0 -43
  337. data/guides/code/getting_started/db/seeds.rb +0 -7
  338. data/guides/code/getting_started/doc/README_FOR_APP +0 -2
  339. data/guides/code/getting_started/public/404.html +0 -26
  340. data/guides/code/getting_started/public/422.html +0 -26
  341. data/guides/code/getting_started/public/500.html +0 -25
  342. data/guides/code/getting_started/public/favicon.ico +0 -0
  343. data/guides/code/getting_started/public/robots.txt +0 -5
  344. data/guides/code/getting_started/script/rails +0 -6
  345. data/guides/code/getting_started/test/fixtures/comments.yml +0 -11
  346. data/guides/code/getting_started/test/fixtures/posts.yml +0 -11
  347. data/guides/code/getting_started/test/fixtures/tags.yml +0 -9
  348. data/guides/code/getting_started/test/functional/comments_controller_test.rb +0 -7
  349. data/guides/code/getting_started/test/functional/home_controller_test.rb +0 -9
  350. data/guides/code/getting_started/test/functional/posts_controller_test.rb +0 -49
  351. data/guides/code/getting_started/test/performance/browsing_test.rb +0 -12
  352. data/guides/code/getting_started/test/test_helper.rb +0 -13
  353. data/guides/code/getting_started/test/unit/comment_test.rb +0 -7
  354. data/guides/code/getting_started/test/unit/helpers/comments_helper_test.rb +0 -4
  355. data/guides/code/getting_started/test/unit/helpers/home_helper_test.rb +0 -4
  356. data/guides/code/getting_started/test/unit/helpers/posts_helper_test.rb +0 -4
  357. data/guides/code/getting_started/test/unit/post_test.rb +0 -7
  358. data/guides/code/getting_started/test/unit/tag_test.rb +0 -7
  359. data/guides/rails_guides.rb +0 -50
  360. data/guides/rails_guides/generator.rb +0 -310
  361. data/guides/rails_guides/helpers.rb +0 -45
  362. data/guides/rails_guides/indexer.rb +0 -69
  363. data/guides/rails_guides/levenshtein.rb +0 -31
  364. data/guides/rails_guides/textile_extensions.rb +0 -63
  365. data/guides/source/2_2_release_notes.textile +0 -422
  366. data/guides/source/2_3_release_notes.textile +0 -610
  367. data/guides/source/3_0_release_notes.textile +0 -595
  368. data/guides/source/3_1_release_notes.textile +0 -553
  369. data/guides/source/3_2_release_notes.textile +0 -540
  370. data/guides/source/_license.html.erb +0 -2
  371. data/guides/source/_welcome.html.erb +0 -19
  372. data/guides/source/action_controller_overview.textile +0 -820
  373. data/guides/source/action_mailer_basics.textile +0 -516
  374. data/guides/source/action_view_overview.textile +0 -1497
  375. data/guides/source/active_model_basics.textile +0 -205
  376. data/guides/source/active_record_basics.textile +0 -218
  377. data/guides/source/active_record_querying.textile +0 -1433
  378. data/guides/source/active_record_validations_callbacks.textile +0 -1287
  379. data/guides/source/active_resource_basics.textile +0 -120
  380. data/guides/source/active_support_core_extensions.textile +0 -3715
  381. data/guides/source/api_documentation_guidelines.textile +0 -185
  382. data/guides/source/asset_pipeline.textile +0 -707
  383. data/guides/source/association_basics.textile +0 -1959
  384. data/guides/source/caching_with_rails.textile +0 -437
  385. data/guides/source/command_line.textile +0 -574
  386. data/guides/source/configuring.textile +0 -643
  387. data/guides/source/contributing_to_ruby_on_rails.textile +0 -448
  388. data/guides/source/credits.html.erb +0 -72
  389. data/guides/source/debugging_rails_applications.textile +0 -714
  390. data/guides/source/documents.yaml +0 -157
  391. data/guides/source/engines.textile +0 -618
  392. data/guides/source/form_helpers.textile +0 -798
  393. data/guides/source/generators.textile +0 -621
  394. data/guides/source/getting_started.textile +0 -1931
  395. data/guides/source/i18n.textile +0 -931
  396. data/guides/source/index.html.erb +0 -30
  397. data/guides/source/initialization.textile +0 -1116
  398. data/guides/source/kindle/KINDLE.md +0 -26
  399. data/guides/source/kindle/copyright.html.erb +0 -1
  400. data/guides/source/kindle/layout.html.erb +0 -27
  401. data/guides/source/kindle/rails_guides.opf.erb +0 -52
  402. data/guides/source/kindle/toc.html.erb +0 -24
  403. data/guides/source/kindle/toc.ncx.erb +0 -64
  404. data/guides/source/kindle/welcome.html.erb +0 -5
  405. data/guides/source/layout.html.erb +0 -124
  406. data/guides/source/layouts_and_rendering.textile +0 -1237
  407. data/guides/source/migrations.textile +0 -900
  408. data/guides/source/nested_model_forms.textile +0 -222
  409. data/guides/source/performance_testing.textile +0 -597
  410. data/guides/source/plugins.textile +0 -464
  411. data/guides/source/rails_application_templates.textile +0 -240
  412. data/guides/source/rails_on_rack.textile +0 -236
  413. data/guides/source/routing.textile +0 -885
  414. data/guides/source/ruby_on_rails_guides_guidelines.textile +0 -79
  415. data/guides/source/security.textile +0 -1004
  416. data/guides/source/testing.textile +0 -947
  417. data/guides/w3c_validator.rb +0 -91
  418. data/lib/rails/application/railties.rb +0 -13
  419. data/lib/rails/application/route_inspector.rb +0 -84
  420. data/lib/rails/commands/benchmarker.rb +0 -34
  421. data/lib/rails/commands/plugin.rb +0 -544
  422. data/lib/rails/commands/profiler.rb +0 -33
  423. data/lib/rails/generators/rails/app/templates/README +0 -261
  424. data/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb +0 -3
  425. data/lib/rails/generators/rails/app/templates/app/mailers/.empty_directory +0 -0
  426. data/lib/rails/generators/rails/app/templates/app/models/.empty_directory +0 -0
  427. data/lib/rails/generators/rails/app/templates/doc/README_FOR_APP +0 -2
  428. data/lib/rails/generators/rails/app/templates/public/stylesheets/.empty_directory +0 -0
  429. data/lib/rails/generators/rails/app/templates/script/rails +0 -5
  430. data/lib/rails/generators/rails/app/templates/test/fixtures/.empty_directory +0 -0
  431. data/lib/rails/generators/rails/app/templates/test/functional/.empty_directory +0 -0
  432. data/lib/rails/generators/rails/app/templates/test/integration/.empty_directory +0 -0
  433. data/lib/rails/generators/rails/app/templates/test/performance/browsing_test.rb +0 -12
  434. data/lib/rails/generators/rails/app/templates/test/unit/.empty_directory +0 -0
  435. data/lib/rails/generators/rails/generator/templates/templates/.empty_directory +0 -0
  436. data/lib/rails/generators/rails/observer/USAGE +0 -12
  437. data/lib/rails/generators/rails/observer/observer_generator.rb +0 -7
  438. data/lib/rails/generators/rails/performance_test/USAGE +0 -10
  439. data/lib/rails/generators/rails/performance_test/performance_test_generator.rb +0 -7
  440. data/lib/rails/generators/rails/plugin_new/templates/app/mailers/.empty_directory +0 -0
  441. data/lib/rails/generators/rails/plugin_new/templates/app/models/.empty_directory +0 -0
  442. data/lib/rails/generators/rails/session_migration/USAGE +0 -8
  443. data/lib/rails/generators/rails/session_migration/session_migration_generator.rb +0 -8
  444. data/lib/rails/generators/test_unit/observer/observer_generator.rb +0 -13
  445. data/lib/rails/generators/test_unit/observer/templates/unit_test.rb +0 -9
  446. data/lib/rails/generators/test_unit/performance/performance_generator.rb +0 -13
  447. data/lib/rails/generators/test_unit/performance/templates/performance_test.rb +0 -12
  448. data/lib/rails/performance_test_help.rb +0 -3
  449. data/lib/rails/plugin.rb +0 -92
  450. data/lib/rails/script_rails_loader.rb +0 -29
@@ -1,3 +1,5 @@
1
+ require 'active_support/deprecation'
2
+
1
3
  module Rails
2
4
  module Generators
3
5
  # ActiveModel is a class to be implemented by each ORM to allow Rails to
@@ -11,7 +13,7 @@ module Rails
11
13
  # ActiveRecord::Generators::ActiveModel.find(Foo, "params[:id]")
12
14
  # # => "Foo.find(params[:id])"
13
15
  #
14
- # Datamapper::Generators::ActiveModel.find(Foo, "params[:id]")
16
+ # DataMapper::Generators::ActiveModel.find(Foo, "params[:id]")
15
17
  # # => "Foo.get(params[:id])"
16
18
  #
17
19
  # On initialization, the ActiveModel accepts the instance name that will
@@ -37,7 +39,7 @@ module Rails
37
39
 
38
40
  # GET show
39
41
  # GET edit
40
- # PUT update
42
+ # PATCH/PUT update
41
43
  # DELETE destroy
42
44
  def self.find(klass, params=nil)
43
45
  "#{klass}.find(#{params})"
@@ -58,13 +60,19 @@ module Rails
58
60
  "#{name}.save"
59
61
  end
60
62
 
61
- # PUT update
62
- def update_attributes(params=nil)
63
- "#{name}.update_attributes(#{params})"
63
+ # PATCH/PUT update
64
+ def update(params=nil)
65
+ "#{name}.update(#{params})"
66
+ end
67
+
68
+ def update_attributes(*args) # :nodoc:
69
+ ActiveSupport::Deprecation.warn("Calling '@orm_instance.update_attributes' " \
70
+ "is deprecated, please use '@orm_instance.update' instead.")
71
+ update(*args)
64
72
  end
65
73
 
66
74
  # POST create
67
- # PUT update
75
+ # PATCH/PUT update
68
76
  def errors
69
77
  "#{name}.errors"
70
78
  end
@@ -8,7 +8,7 @@ require 'uri'
8
8
 
9
9
  module Rails
10
10
  module Generators
11
- class AppBase < Base
11
+ class AppBase < Base # :nodoc:
12
12
  DATABASES = %w( mysql oracle postgresql sqlite3 frontbase ibm_db sqlserver )
13
13
  JDBC_DATABASES = %w( jdbcmysql jdbcsqlite3 jdbcpostgresql jdbc )
14
14
  DATABASES.concat(JDBC_DATABASES)
@@ -16,53 +16,56 @@ module Rails
16
16
  attr_accessor :rails_template
17
17
  add_shebang_option!
18
18
 
19
- argument :app_path, :type => :string
19
+ argument :app_path, type: :string
20
20
 
21
21
  def self.add_shared_options_for(name)
22
- class_option :builder, :type => :string, :aliases => "-b",
23
- :desc => "Path to a #{name} builder (can be a filesystem path or URL)"
22
+ class_option :template, type: :string, aliases: '-m',
23
+ desc: "Path to some #{name} template (can be a filesystem path or URL)"
24
24
 
25
- class_option :template, :type => :string, :aliases => "-m",
26
- :desc => "Path to an #{name} template (can be a filesystem path or URL)"
25
+ class_option :skip_gemfile, type: :boolean, default: false,
26
+ desc: "Don't create a Gemfile"
27
27
 
28
- class_option :skip_gemfile, :type => :boolean, :default => false,
29
- :desc => "Don't create a Gemfile"
28
+ class_option :skip_bundle, type: :boolean, aliases: '-B', default: false,
29
+ desc: "Don't run bundle install"
30
30
 
31
- class_option :skip_bundle, :type => :boolean, :default => false,
32
- :desc => "Don't run bundle install"
31
+ class_option :skip_git, type: :boolean, aliases: '-G', default: false,
32
+ desc: 'Skip .gitignore file'
33
33
 
34
- class_option :skip_git, :type => :boolean, :aliases => "-G", :default => false,
35
- :desc => "Skip Git ignores and keeps"
34
+ class_option :skip_keeps, type: :boolean, default: false,
35
+ desc: 'Skip source control .keep files'
36
36
 
37
- class_option :skip_active_record, :type => :boolean, :aliases => "-O", :default => false,
38
- :desc => "Skip Active Record files"
37
+ class_option :skip_active_record, type: :boolean, aliases: '-O', default: false,
38
+ desc: 'Skip Active Record files'
39
39
 
40
- class_option :skip_sprockets, :type => :boolean, :aliases => "-S", :default => false,
41
- :desc => "Skip Sprockets files"
40
+ class_option :skip_sprockets, type: :boolean, aliases: '-S', default: false,
41
+ desc: 'Skip Sprockets files'
42
42
 
43
- class_option :database, :type => :string, :aliases => "-d", :default => "sqlite3",
44
- :desc => "Preconfigure for selected database (options: #{DATABASES.join('/')})"
43
+ class_option :database, type: :string, aliases: '-d', default: 'sqlite3',
44
+ desc: "Preconfigure for selected database (options: #{DATABASES.join('/')})"
45
45
 
46
- class_option :javascript, :type => :string, :aliases => '-j', :default => 'jquery',
47
- :desc => 'Preconfigure for selected JavaScript library'
46
+ class_option :javascript, type: :string, aliases: '-j', default: 'jquery',
47
+ desc: 'Preconfigure for selected JavaScript library'
48
48
 
49
- class_option :skip_javascript, :type => :boolean, :aliases => "-J", :default => false,
50
- :desc => "Skip JavaScript files"
49
+ class_option :skip_javascript, type: :boolean, aliases: '-J', default: false,
50
+ desc: 'Skip JavaScript files'
51
51
 
52
- class_option :dev, :type => :boolean, :default => false,
53
- :desc => "Setup the #{name} with Gemfile pointing to your Rails checkout"
52
+ class_option :dev, type: :boolean, default: false,
53
+ desc: "Setup the #{name} with Gemfile pointing to your Rails checkout"
54
54
 
55
- class_option :edge, :type => :boolean, :default => false,
56
- :desc => "Setup the #{name} with Gemfile pointing to Rails repository"
55
+ class_option :edge, type: :boolean, default: false,
56
+ desc: "Setup the #{name} with Gemfile pointing to Rails repository"
57
57
 
58
- class_option :skip_test_unit, :type => :boolean, :aliases => "-T", :default => false,
59
- :desc => "Skip Test::Unit files"
58
+ class_option :skip_test_unit, type: :boolean, aliases: '-T', default: false,
59
+ desc: 'Skip Test::Unit files'
60
60
 
61
- class_option :help, :type => :boolean, :aliases => "-h", :group => :rails,
62
- :desc => "Show this help message and quit"
61
+ class_option :rc, type: :string, default: false,
62
+ desc: "Path to file containing extra configuration options for rails command"
63
63
 
64
- class_option :old_style_hash, :type => :boolean, :default => false,
65
- :desc => "Force using old style hash (:foo => 'bar') on Ruby >= 1.9"
64
+ class_option :no_rc, type: :boolean, default: false,
65
+ desc: 'Skip loading of extra configuration options from .railsrc file'
66
+
67
+ class_option :help, type: :boolean, aliases: '-h', group: :rails,
68
+ desc: 'Show this help message and quit'
66
69
  end
67
70
 
68
71
  def initialize(*args)
@@ -75,17 +78,6 @@ module Rails
75
78
 
76
79
  def builder
77
80
  @builder ||= begin
78
- if path = options[:builder]
79
- if URI(path).is_a?(URI::HTTP)
80
- contents = open(path, "Accept" => "application/x-thor-template") {|io| io.read }
81
- else
82
- contents = open(File.expand_path(path, @original_wd)) {|io| io.read }
83
- end
84
-
85
- prok = eval("proc { #{contents} }", TOPLEVEL_BINDING, path, 1)
86
- instance_eval(&prok)
87
- end
88
-
89
81
  builder_class = get_builder_class
90
82
  builder_class.send(:include, ActionMethods)
91
83
  builder_class.new(self)
@@ -123,7 +115,7 @@ module Rails
123
115
  end
124
116
 
125
117
  def database_gemfile_entry
126
- options[:skip_active_record] ? "" : "gem '#{gem_for_database}'\n"
118
+ options[:skip_active_record] ? "" : "gem '#{gem_for_database}'"
127
119
  end
128
120
 
129
121
  def include_all_railties?
@@ -137,22 +129,20 @@ module Rails
137
129
  def rails_gemfile_entry
138
130
  if options.dev?
139
131
  <<-GEMFILE.strip_heredoc
140
- gem 'rails', :path => '#{Rails::Generators::RAILS_DEV_PATH}'
141
- gem 'journey', :git => 'git://github.com/rails/journey.git', :branch => '1-0-stable'
142
- gem 'arel', :git => 'git://github.com/rails/arel.git', :branch => '3-0-stable'
132
+ gem 'rails', path: '#{Rails::Generators::RAILS_DEV_PATH}'
133
+ gem 'arel', github: 'rails/arel'
134
+ gem 'activerecord-deprecated_finders', github: 'rails/activerecord-deprecated_finders'
143
135
  GEMFILE
144
136
  elsif options.edge?
145
137
  <<-GEMFILE.strip_heredoc
146
- gem 'rails', :git => 'git://github.com/rails/rails.git', :branch => '3-2-stable'
147
- gem 'journey', :git => 'git://github.com/rails/journey.git', :branch => '1-0-stable'
148
- gem 'arel', :git => 'git://github.com/rails/arel.git', :branch => '3-0-stable'
138
+ gem 'rails', github: 'rails/rails'
139
+ gem 'arel', github: 'rails/arel'
140
+ gem 'activerecord-deprecated_finders', github: 'rails/activerecord-deprecated_finders'
149
141
  GEMFILE
150
142
  else
151
143
  <<-GEMFILE.strip_heredoc
144
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
152
145
  gem 'rails', '#{Rails::VERSION::STRING}'
153
-
154
- # Bundle edge Rails instead:
155
- # gem 'rails', :git => 'git://github.com/rails/rails.git'
156
146
  GEMFILE
157
147
  end
158
148
  end
@@ -184,14 +174,6 @@ module Rails
184
174
  end
185
175
  end
186
176
 
187
- def ruby_debugger_gemfile_entry
188
- if RUBY_VERSION < "1.9"
189
- "gem 'ruby-debug'"
190
- else
191
- "gem 'debugger'"
192
- end
193
- end
194
-
195
177
  def assets_gemfile_entry
196
178
  return if options[:skip_sprockets]
197
179
 
@@ -200,8 +182,9 @@ module Rails
200
182
  # Gems used only for assets and not required
201
183
  # in production environments by default.
202
184
  group :assets do
203
- gem 'sass-rails', :git => 'git://github.com/rails/sass-rails.git', :branch => '3-2-stable'
204
- gem 'coffee-rails', :git => 'git://github.com/rails/coffee-rails.git', :branch => '3-2-stable'
185
+ gem 'sprockets-rails', github: 'rails/sprockets-rails'
186
+ gem 'sass-rails', github: 'rails/sass-rails'
187
+ gem 'coffee-rails', github: 'rails/coffee-rails'
205
188
 
206
189
  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
207
190
  #{javascript_runtime_gemfile_entry}
@@ -213,8 +196,8 @@ module Rails
213
196
  # Gems used only for assets and not required
214
197
  # in production environments by default.
215
198
  group :assets do
216
- gem 'sass-rails', '~> 3.2.3'
217
- gem 'coffee-rails', '~> 3.2.1'
199
+ gem 'sass-rails', '~> 4.0.0.beta1'
200
+ gem 'coffee-rails', '~> 4.0.0.beta1'
218
201
 
219
202
  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
220
203
  #{javascript_runtime_gemfile_entry}
@@ -227,14 +210,21 @@ module Rails
227
210
  end
228
211
 
229
212
  def javascript_gemfile_entry
230
- "gem '#{options[:javascript]}-rails'" unless options[:skip_javascript]
213
+ unless options[:skip_javascript]
214
+ <<-GEMFILE.strip_heredoc
215
+ gem '#{options[:javascript]}-rails'
216
+
217
+ # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
218
+ gem 'turbolinks'
219
+ GEMFILE
220
+ end
231
221
  end
232
222
 
233
223
  def javascript_runtime_gemfile_entry
234
224
  if defined?(JRUBY_VERSION)
235
225
  "gem 'therubyrhino'\n"
236
226
  else
237
- "# gem 'therubyracer', :platforms => :ruby\n"
227
+ "# gem 'therubyracer', platforms: :ruby\n"
238
228
  end
239
229
  end
240
230
 
@@ -250,31 +240,28 @@ module Rails
250
240
  # is easier to silence stdout in the existing test suite this way. The
251
241
  # end-user gets the bundler commands called anyway, so no big deal.
252
242
  #
243
+ # We unset temporary bundler variables to load proper bundler and Gemfile.
244
+ #
253
245
  # Thanks to James Tucker for the Gem tricks involved in this call.
254
- print `"#{Gem.ruby}" -rubygems "#{Gem.bin_path('bundler', 'bundle')}" #{command}`
246
+ _bundle_command = Gem.bin_path('bundler', 'bundle')
247
+
248
+ require 'bundler'
249
+ Bundler.with_clean_env do
250
+ print `"#{Gem.ruby}" "#{_bundle_command}" #{command}`
251
+ end
255
252
  end
256
253
 
257
254
  def run_bundle
258
- bundle_command('install') unless options[:skip_gemfile] || options[:skip_bundle]
255
+ bundle_command('install') unless options[:skip_gemfile] || options[:skip_bundle] || options[:pretend]
259
256
  end
260
257
 
261
- def empty_directory_with_gitkeep(destination, config = {})
258
+ def empty_directory_with_keep_file(destination, config = {})
262
259
  empty_directory(destination, config)
263
- git_keep(destination)
264
- end
265
-
266
- def git_keep(destination)
267
- create_file("#{destination}/.gitkeep") unless options[:skip_git]
260
+ keep_file(destination)
268
261
  end
269
262
 
270
- # Returns Ruby 1.9 style key-value pair if current code is running on
271
- # Ruby 1.9.x. Returns the old-style (with hash rocket) otherwise.
272
- def key_value(key, value)
273
- if options[:old_style_hash] || RUBY_VERSION < '1.9'
274
- ":#{key} => #{value}"
275
- else
276
- "#{key}: #{value}"
277
- end
263
+ def keep_file(destination)
264
+ create_file("#{destination}/.keep") unless options[:skip_keeps]
278
265
  end
279
266
  end
280
267
  end
@@ -8,11 +8,10 @@ rescue LoadError
8
8
  end
9
9
 
10
10
  require 'rails/generators/actions'
11
- require 'active_support/core_ext/object/inclusion'
12
11
 
13
12
  module Rails
14
13
  module Generators
15
- class Error < Thor::Error
14
+ class Error < Thor::Error # :nodoc:
16
15
  end
17
16
 
18
17
  class Base < Thor::Group
@@ -20,7 +19,7 @@ module Rails
20
19
  include Rails::Generators::Actions
21
20
 
22
21
  add_runtime_options!
23
- strict_args_position! if respond_to?(:strict_args_position!)
22
+ strict_args_position!
24
23
 
25
24
  # Returns the source root for this generator using default_source_root as default.
26
25
  def self.source_root(path=nil)
@@ -48,6 +47,12 @@ module Rails
48
47
  @namespace ||= super.sub(/_generator$/, '').sub(/:generators:/, ':')
49
48
  end
50
49
 
50
+ # Convenience method to hide this generator from the available ones when
51
+ # running rails generator command.
52
+ def self.hide!
53
+ Rails::Generators.hide_namespace self.namespace
54
+ end
55
+
51
56
  # Invoke a generator based on the value supplied by the user to the
52
57
  # given option named "name". A class option is created when this method
53
58
  # is invoked and you can set a hash to customize it.
@@ -56,7 +61,7 @@ module Rails
56
61
  #
57
62
  # module Rails::Generators
58
63
  # class ControllerGenerator < Base
59
- # hook_for :test_framework, :aliases => "-t"
64
+ # hook_for :test_framework, aliases: "-t"
60
65
  # end
61
66
  # end
62
67
  #
@@ -91,29 +96,29 @@ module Rails
91
96
  #
92
97
  # The lookup in this case for test_unit as input is:
93
98
  #
94
- # "test_framework:awesome", "test_framework"
99
+ # "test_unit:awesome", "test_unit"
95
100
  #
96
- # Which is not the desired the lookup. You can change it by providing the
101
+ # Which is not the desired lookup. You can change it by providing the
97
102
  # :as option:
98
103
  #
99
104
  # class AwesomeGenerator < Rails::Generators::Base
100
- # hook_for :test_framework, :as => :controller
105
+ # hook_for :test_framework, as: :controller
101
106
  # end
102
107
  #
103
108
  # And now it will lookup at:
104
109
  #
105
- # "test_framework:controller", "test_framework"
110
+ # "test_unit:controller", "test_unit"
106
111
  #
107
112
  # Similarly, if you want it to also lookup in the rails namespace, you just
108
113
  # need to provide the :base value:
109
114
  #
110
115
  # class AwesomeGenerator < Rails::Generators::Base
111
- # hook_for :test_framework, :in => :rails, :as => :controller
116
+ # hook_for :test_framework, in: :rails, as: :controller
112
117
  # end
113
118
  #
114
119
  # And the lookup is exactly the same as previously:
115
120
  #
116
- # "rails:test_framework", "test_framework:controller", "test_framework"
121
+ # "rails:test_unit", "test_unit:controller", "test_unit"
117
122
  #
118
123
  # ==== Switches
119
124
  #
@@ -132,7 +137,7 @@ module Rails
132
137
  # developers might want to have webrat available on controller generator.
133
138
  # This can be achieved as:
134
139
  #
135
- # Rails::Generators::ControllerGenerator.hook_for :webrat, :type => :boolean
140
+ # Rails::Generators::ControllerGenerator.hook_for :webrat, type: :boolean
136
141
  #
137
142
  # Then, if you want webrat to be invoked, just supply:
138
143
  #
@@ -165,10 +170,10 @@ module Rails
165
170
  names.each do |name|
166
171
  defaults = if options[:type] == :boolean
167
172
  { }
168
- elsif default_value_for_option(name, options).in?([true, false])
169
- { :banner => "" }
173
+ elsif [true, false].include?(default_value_for_option(name, options))
174
+ { banner: "" }
170
175
  else
171
- { :desc => "#{name.to_s.humanize} to be invoked", :banner => "NAME" }
176
+ { desc: "#{name.to_s.humanize} to be invoked", banner: "NAME" }
172
177
  end
173
178
 
174
179
  unless class_options.key?(name)
@@ -182,10 +187,7 @@ module Rails
182
187
 
183
188
  # Remove a previously added hook.
184
189
  #
185
- # ==== Examples
186
- #
187
190
  # remove_hook_for :orm
188
- #
189
191
  def self.remove_hook_for(*names)
190
192
  remove_invocation(*names)
191
193
 
@@ -243,7 +245,6 @@ module Rails
243
245
 
244
246
  # Check whether the given class names are already taken by user
245
247
  # application or Ruby on Rails.
246
- #
247
248
  def class_collisions(*class_names) #:nodoc:
248
249
  return unless behavior == :invoke
249
250
 
@@ -255,17 +256,13 @@ module Rails
255
256
  nesting = class_name.split('::')
256
257
  last_name = nesting.pop
257
258
 
258
- # Hack to limit const_defined? to non-inherited on 1.9
259
- extra = []
260
- extra << false unless Object.method(:const_defined?).arity == 1
261
-
262
259
  # Extract the last Module in the nesting
263
260
  last = nesting.inject(Object) do |last_module, nest|
264
- break unless last_module.const_defined?(nest, *extra)
261
+ break unless last_module.const_defined?(nest, false)
265
262
  last_module.const_get(nest)
266
263
  end
267
264
 
268
- if last && last.const_defined?(last_name.camelize, *extra)
265
+ if last && last.const_defined?(last_name.camelize, false)
269
266
  raise Error, "The name '#{class_name}' is either already used in your application " <<
270
267
  "or reserved by Ruby on Rails. Please choose an alternative and run " <<
271
268
  "this generator again."
@@ -274,13 +271,11 @@ module Rails
274
271
  end
275
272
 
276
273
  # Use Rails default banner.
277
- #
278
274
  def self.banner
279
275
  "rails generate #{namespace.sub(/^rails:/,'')} #{self.arguments.map{ |a| a.usage }.join(' ')} [options]".gsub(/\s+/, ' ')
280
276
  end
281
277
 
282
278
  # Sets the base_name taking into account the current class namespace.
283
- #
284
279
  def self.base_name
285
280
  @base_name ||= begin
286
281
  if base = name.to_s.split('::').first
@@ -291,7 +286,6 @@ module Rails
291
286
 
292
287
  # Removes the namespaces and get the generator name. For example,
293
288
  # Rails::Generators::ModelGenerator will return "model" as generator name.
294
- #
295
289
  def self.generator_name
296
290
  @generator_name ||= begin
297
291
  if generator = name.to_s.split('::').last
@@ -303,20 +297,17 @@ module Rails
303
297
 
304
298
  # Return the default value for the option name given doing a lookup in
305
299
  # Rails::Generators.options.
306
- #
307
300
  def self.default_value_for_option(name, options)
308
301
  default_for_option(Rails::Generators.options, name, options, options[:default])
309
302
  end
310
303
 
311
304
  # Return default aliases for the option name given doing a lookup in
312
305
  # Rails::Generators.aliases.
313
- #
314
306
  def self.default_aliases_for_option(name, options)
315
307
  default_for_option(Rails::Generators.aliases, name, options, options[:aliases])
316
308
  end
317
309
 
318
310
  # Return default for the option name given doing a lookup in config.
319
- #
320
311
  def self.default_for_option(config, name, options, default)
321
312
  if generator_name and c = config[generator_name.to_sym] and c.key?(name)
322
313
  c[name]
@@ -330,14 +321,12 @@ module Rails
330
321
  end
331
322
 
332
323
  # Keep hooks configuration that are used on prepare_for_invocation.
333
- #
334
324
  def self.hooks #:nodoc:
335
325
  @hooks ||= from_superclass(:hooks, {})
336
326
  end
337
327
 
338
328
  # Prepare class invocation to search on Rails namespace if a previous
339
329
  # added hook is being used.
340
- #
341
330
  def self.prepare_for_invocation(name, value) #:nodoc:
342
331
  return super unless value.is_a?(String) || value.is_a?(Symbol)
343
332
 
@@ -353,10 +342,9 @@ module Rails
353
342
 
354
343
  # Small macro to add ruby as an option to the generator with proper
355
344
  # default value plus an instance helper method called shebang.
356
- #
357
345
  def self.add_shebang_option!
358
- class_option :ruby, :type => :string, :aliases => "-r", :default => Thor::Util.ruby_command,
359
- :desc => "Path to the Ruby binary of your choice", :banner => "PATH"
346
+ class_option :ruby, type: :string, aliases: "-r", default: Thor::Util.ruby_command,
347
+ desc: "Path to the Ruby binary of your choice", banner: "PATH"
360
348
 
361
349
  no_tasks {
362
350
  define_method :shebang do