railties 3.0.0.beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (334) hide show
  1. data/CHANGELOG +2201 -0
  2. data/README +286 -0
  3. data/bin/rails +11 -0
  4. data/builtin/rails_info/rails/info.rb +147 -0
  5. data/builtin/rails_info/rails/info_controller.rb +15 -0
  6. data/builtin/rails_info/rails/info_helper.rb +2 -0
  7. data/builtin/routes.rb +3 -0
  8. data/guides/files/javascripts/code_highlighter.js +188 -0
  9. data/guides/files/javascripts/guides.js +7 -0
  10. data/guides/files/javascripts/highlighters.js +90 -0
  11. data/guides/files/stylesheets/main.css +441 -0
  12. data/guides/files/stylesheets/print.css +52 -0
  13. data/guides/files/stylesheets/reset.css +43 -0
  14. data/guides/files/stylesheets/style.css +13 -0
  15. data/guides/files/stylesheets/syntax.css +31 -0
  16. data/guides/images/belongs_to.png +0 -0
  17. data/guides/images/book_icon.gif +0 -0
  18. data/guides/images/bullet.gif +0 -0
  19. data/guides/images/chapters_icon.gif +0 -0
  20. data/guides/images/check_bullet.gif +0 -0
  21. data/guides/images/credits_pic_blank.gif +0 -0
  22. data/guides/images/csrf.png +0 -0
  23. data/guides/images/customized_error_messages.png +0 -0
  24. data/guides/images/error_messages.png +0 -0
  25. data/guides/images/feature_tile.gif +0 -0
  26. data/guides/images/footer_tile.gif +0 -0
  27. data/guides/images/fxn.png +0 -0
  28. data/guides/images/grey_bullet.gif +0 -0
  29. data/guides/images/habtm.png +0 -0
  30. data/guides/images/has_many.png +0 -0
  31. data/guides/images/has_many_through.png +0 -0
  32. data/guides/images/has_one.png +0 -0
  33. data/guides/images/has_one_through.png +0 -0
  34. data/guides/images/header_backdrop.png +0 -0
  35. data/guides/images/header_tile.gif +0 -0
  36. data/guides/images/i18n/demo_localized_pirate.png +0 -0
  37. data/guides/images/i18n/demo_translated_en.png +0 -0
  38. data/guides/images/i18n/demo_translated_pirate.png +0 -0
  39. data/guides/images/i18n/demo_translation_missing.png +0 -0
  40. data/guides/images/i18n/demo_untranslated.png +0 -0
  41. data/guides/images/icons/README +5 -0
  42. data/guides/images/icons/callouts/1.png +0 -0
  43. data/guides/images/icons/callouts/10.png +0 -0
  44. data/guides/images/icons/callouts/11.png +0 -0
  45. data/guides/images/icons/callouts/12.png +0 -0
  46. data/guides/images/icons/callouts/13.png +0 -0
  47. data/guides/images/icons/callouts/14.png +0 -0
  48. data/guides/images/icons/callouts/15.png +0 -0
  49. data/guides/images/icons/callouts/2.png +0 -0
  50. data/guides/images/icons/callouts/3.png +0 -0
  51. data/guides/images/icons/callouts/4.png +0 -0
  52. data/guides/images/icons/callouts/5.png +0 -0
  53. data/guides/images/icons/callouts/6.png +0 -0
  54. data/guides/images/icons/callouts/7.png +0 -0
  55. data/guides/images/icons/callouts/8.png +0 -0
  56. data/guides/images/icons/callouts/9.png +0 -0
  57. data/guides/images/icons/caution.png +0 -0
  58. data/guides/images/icons/example.png +0 -0
  59. data/guides/images/icons/home.png +0 -0
  60. data/guides/images/icons/important.png +0 -0
  61. data/guides/images/icons/next.png +0 -0
  62. data/guides/images/icons/note.png +0 -0
  63. data/guides/images/icons/prev.png +0 -0
  64. data/guides/images/icons/tip.png +0 -0
  65. data/guides/images/icons/up.png +0 -0
  66. data/guides/images/icons/warning.png +0 -0
  67. data/guides/images/nav_arrow.gif +0 -0
  68. data/guides/images/polymorphic.png +0 -0
  69. data/guides/images/posts_index.png +0 -0
  70. data/guides/images/rails_guides_logo.gif +0 -0
  71. data/guides/images/rails_logo_remix.gif +0 -0
  72. data/guides/images/rails_welcome.png +0 -0
  73. data/guides/images/session_fixation.png +0 -0
  74. data/guides/images/tab_grey.gif +0 -0
  75. data/guides/images/tab_info.gif +0 -0
  76. data/guides/images/tab_note.gif +0 -0
  77. data/guides/images/tab_red.gif +0 -0
  78. data/guides/images/tab_yellow.gif +0 -0
  79. data/guides/images/tab_yellow.png +0 -0
  80. data/guides/images/validation_error_messages.png +0 -0
  81. data/guides/rails_guides.rb +44 -0
  82. data/guides/rails_guides/generator.rb +178 -0
  83. data/guides/rails_guides/helpers.rb +34 -0
  84. data/guides/rails_guides/indexer.rb +55 -0
  85. data/guides/rails_guides/levenshtein.rb +31 -0
  86. data/guides/rails_guides/textile_extensions.rb +41 -0
  87. data/guides/source/2_2_release_notes.textile +422 -0
  88. data/guides/source/2_3_release_notes.textile +610 -0
  89. data/guides/source/3_0_release_notes.textile +560 -0
  90. data/guides/source/action_controller_overview.textile +783 -0
  91. data/guides/source/action_mailer_basics.textile +437 -0
  92. data/guides/source/action_view_overview.textile +1481 -0
  93. data/guides/source/active_record_basics.textile +204 -0
  94. data/guides/source/active_record_querying.textile +961 -0
  95. data/guides/source/active_support_core_extensions.textile +1835 -0
  96. data/guides/source/activerecord_validations_callbacks.textile +1127 -0
  97. data/guides/source/ajax_on_rails.textile +342 -0
  98. data/guides/source/association_basics.textile +1816 -0
  99. data/guides/source/caching_with_rails.textile +390 -0
  100. data/guides/source/command_line.textile +589 -0
  101. data/guides/source/configuring.textile +290 -0
  102. data/guides/source/contribute.textile +71 -0
  103. data/guides/source/contributing_to_rails.textile +272 -0
  104. data/guides/source/credits.textile.erb +52 -0
  105. data/guides/source/debugging_rails_applications.textile +709 -0
  106. data/guides/source/form_helpers.textile +768 -0
  107. data/guides/source/generators.textile +378 -0
  108. data/guides/source/getting_started.textile +1310 -0
  109. data/guides/source/i18n.textile +879 -0
  110. data/guides/source/index.textile.erb +124 -0
  111. data/guides/source/layout.html.erb +103 -0
  112. data/guides/source/layouts_and_rendering.textile +979 -0
  113. data/guides/source/migrations.textile +591 -0
  114. data/guides/source/nested_model_forms.textile +222 -0
  115. data/guides/source/performance_testing.textile +531 -0
  116. data/guides/source/plugins.textile +1512 -0
  117. data/guides/source/rails_application_templates.textile +238 -0
  118. data/guides/source/rails_on_rack.textile +306 -0
  119. data/guides/source/routing.textile +903 -0
  120. data/guides/source/security.textile +984 -0
  121. data/guides/source/testing.textile +946 -0
  122. data/lib/generators/erb.rb +8 -0
  123. data/lib/generators/erb/controller/controller_generator.rb +21 -0
  124. data/lib/generators/erb/controller/templates/view.html.erb +2 -0
  125. data/lib/generators/erb/mailer/mailer_generator.rb +20 -0
  126. data/lib/generators/erb/mailer/templates/view.text.erb +3 -0
  127. data/lib/generators/erb/scaffold/scaffold_generator.rb +53 -0
  128. data/lib/generators/erb/scaffold/templates/_form.html.erb +13 -0
  129. data/lib/generators/erb/scaffold/templates/edit.html.erb +6 -0
  130. data/lib/generators/erb/scaffold/templates/index.html.erb +27 -0
  131. data/lib/generators/erb/scaffold/templates/layout.html.erb +16 -0
  132. data/lib/generators/erb/scaffold/templates/new.html.erb +5 -0
  133. data/lib/generators/erb/scaffold/templates/show.html.erb +10 -0
  134. data/lib/generators/rails/app/USAGE +9 -0
  135. data/lib/generators/rails/app/app_generator.rb +262 -0
  136. data/lib/generators/rails/app/templates/Gemfile +34 -0
  137. data/lib/generators/rails/app/templates/README +243 -0
  138. data/lib/generators/rails/app/templates/Rakefile +10 -0
  139. data/lib/generators/rails/app/templates/app/controllers/application_controller.rb +3 -0
  140. data/lib/generators/rails/app/templates/app/helpers/application_helper.rb +2 -0
  141. data/lib/generators/rails/app/templates/app/models/.empty_directory +0 -0
  142. data/lib/generators/rails/app/templates/app/views/layouts/.empty_directory +0 -0
  143. data/lib/generators/rails/app/templates/config.ru +4 -0
  144. data/lib/generators/rails/app/templates/config/application.rb +51 -0
  145. data/lib/generators/rails/app/templates/config/boot.rb +17 -0
  146. data/lib/generators/rails/app/templates/config/databases/frontbase.yml +28 -0
  147. data/lib/generators/rails/app/templates/config/databases/ibm_db.yml +71 -0
  148. data/lib/generators/rails/app/templates/config/databases/mysql.yml +60 -0
  149. data/lib/generators/rails/app/templates/config/databases/oracle.yml +39 -0
  150. data/lib/generators/rails/app/templates/config/databases/postgresql.yml +51 -0
  151. data/lib/generators/rails/app/templates/config/databases/sqlite3.yml +22 -0
  152. data/lib/generators/rails/app/templates/config/environment.rb +5 -0
  153. data/lib/generators/rails/app/templates/config/environments/development.rb.tt +19 -0
  154. data/lib/generators/rails/app/templates/config/environments/production.rb.tt +33 -0
  155. data/lib/generators/rails/app/templates/config/environments/test.rb.tt +29 -0
  156. data/lib/generators/rails/app/templates/config/initializers/backtrace_silencers.rb +7 -0
  157. data/lib/generators/rails/app/templates/config/initializers/cookie_verification_secret.rb.tt +7 -0
  158. data/lib/generators/rails/app/templates/config/initializers/inflections.rb +10 -0
  159. data/lib/generators/rails/app/templates/config/initializers/mime_types.rb +5 -0
  160. data/lib/generators/rails/app/templates/config/initializers/session_store.rb.tt +15 -0
  161. data/lib/generators/rails/app/templates/config/locales/en.yml +5 -0
  162. data/lib/generators/rails/app/templates/config/routes.rb +58 -0
  163. data/lib/generators/rails/app/templates/db/seeds.rb +7 -0
  164. data/lib/generators/rails/app/templates/doc/README_FOR_APP +2 -0
  165. data/lib/generators/rails/app/templates/gitignore +4 -0
  166. data/lib/generators/rails/app/templates/public/404.html +26 -0
  167. data/lib/generators/rails/app/templates/public/422.html +26 -0
  168. data/lib/generators/rails/app/templates/public/500.html +26 -0
  169. data/lib/generators/rails/app/templates/public/favicon.ico +0 -0
  170. data/lib/generators/rails/app/templates/public/images/rails.png +0 -0
  171. data/lib/generators/rails/app/templates/public/index.html +278 -0
  172. data/lib/generators/rails/app/templates/public/javascripts/application.js +2 -0
  173. data/lib/generators/rails/app/templates/public/javascripts/controls.js +963 -0
  174. data/lib/generators/rails/app/templates/public/javascripts/dragdrop.js +973 -0
  175. data/lib/generators/rails/app/templates/public/javascripts/effects.js +1128 -0
  176. data/lib/generators/rails/app/templates/public/javascripts/prototype.js +4320 -0
  177. data/lib/generators/rails/app/templates/public/javascripts/rails.js +110 -0
  178. data/lib/generators/rails/app/templates/public/robots.txt +5 -0
  179. data/lib/generators/rails/app/templates/public/stylesheets/.empty_directory +0 -0
  180. data/lib/generators/rails/app/templates/script/rails +9 -0
  181. data/lib/generators/rails/app/templates/test/fixtures/.empty_directory +0 -0
  182. data/lib/generators/rails/app/templates/test/functional/.empty_directory +0 -0
  183. data/lib/generators/rails/app/templates/test/integration/.empty_directory +0 -0
  184. data/lib/generators/rails/app/templates/test/performance/browsing_test.rb +9 -0
  185. data/lib/generators/rails/app/templates/test/test_helper.rb +13 -0
  186. data/lib/generators/rails/app/templates/test/unit/.empty_directory +0 -0
  187. data/lib/generators/rails/controller/USAGE +18 -0
  188. data/lib/generators/rails/controller/controller_generator.rb +14 -0
  189. data/lib/generators/rails/controller/templates/controller.rb +7 -0
  190. data/lib/generators/rails/generator/USAGE +11 -0
  191. data/lib/generators/rails/generator/generator_generator.rb +25 -0
  192. data/lib/generators/rails/generator/templates/%file_name%_generator.rb.tt +5 -0
  193. data/lib/generators/rails/generator/templates/USAGE.tt +8 -0
  194. data/lib/generators/rails/generator/templates/templates/.empty_directory +0 -0
  195. data/lib/generators/rails/helper/USAGE +17 -0
  196. data/lib/generators/rails/helper/helper_generator.rb +13 -0
  197. data/lib/generators/rails/helper/templates/helper.rb +2 -0
  198. data/lib/generators/rails/integration_test/USAGE +10 -0
  199. data/lib/generators/rails/integration_test/integration_test_generator.rb +7 -0
  200. data/lib/generators/rails/mailer/USAGE +15 -0
  201. data/lib/generators/rails/mailer/mailer_generator.rb +14 -0
  202. data/lib/generators/rails/mailer/templates/mailer.rb +16 -0
  203. data/lib/generators/rails/metal/USAGE +8 -0
  204. data/lib/generators/rails/metal/metal_generator.rb +11 -0
  205. data/lib/generators/rails/metal/templates/metal.rb +12 -0
  206. data/lib/generators/rails/migration/USAGE +29 -0
  207. data/lib/generators/rails/migration/migration_generator.rb +8 -0
  208. data/lib/generators/rails/model/USAGE +30 -0
  209. data/lib/generators/rails/model/model_generator.rb +8 -0
  210. data/lib/generators/rails/model_subclass/model_subclass_generator.rb +12 -0
  211. data/lib/generators/rails/observer/USAGE +12 -0
  212. data/lib/generators/rails/observer/observer_generator.rb +7 -0
  213. data/lib/generators/rails/performance_test/USAGE +10 -0
  214. data/lib/generators/rails/performance_test/performance_test_generator.rb +7 -0
  215. data/lib/generators/rails/plugin/USAGE +13 -0
  216. data/lib/generators/rails/plugin/plugin_generator.rb +47 -0
  217. data/lib/generators/rails/plugin/templates/MIT-LICENSE.tt +20 -0
  218. data/lib/generators/rails/plugin/templates/README.tt +13 -0
  219. data/lib/generators/rails/plugin/templates/Rakefile.tt +10 -0
  220. data/lib/generators/rails/plugin/templates/init.rb +1 -0
  221. data/lib/generators/rails/plugin/templates/install.rb +1 -0
  222. data/lib/generators/rails/plugin/templates/lib/%file_name%.rb.tt +1 -0
  223. data/lib/generators/rails/plugin/templates/lib/tasks/%file_name%_tasks.rake.tt +4 -0
  224. data/lib/generators/rails/plugin/templates/uninstall.rb +1 -0
  225. data/lib/generators/rails/resource/USAGE +23 -0
  226. data/lib/generators/rails/resource/resource_generator.rb +34 -0
  227. data/lib/generators/rails/scaffold/USAGE +29 -0
  228. data/lib/generators/rails/scaffold/scaffold_generator.rb +13 -0
  229. data/lib/generators/rails/scaffold_controller/USAGE +20 -0
  230. data/lib/generators/rails/scaffold_controller/scaffold_controller_generator.rb +27 -0
  231. data/lib/generators/rails/scaffold_controller/templates/controller.rb +85 -0
  232. data/lib/generators/rails/session_migration/USAGE +8 -0
  233. data/lib/generators/rails/session_migration/session_migration_generator.rb +8 -0
  234. data/lib/generators/rails/stylesheets/USAGE +5 -0
  235. data/lib/generators/rails/stylesheets/stylesheets_generator.rb +9 -0
  236. data/lib/generators/rails/stylesheets/templates/scaffold.css +61 -0
  237. data/lib/generators/test_unit.rb +8 -0
  238. data/lib/generators/test_unit/controller/controller_generator.rb +14 -0
  239. data/lib/generators/test_unit/controller/templates/functional_test.rb +8 -0
  240. data/lib/generators/test_unit/helper/helper_generator.rb +13 -0
  241. data/lib/generators/test_unit/helper/templates/helper_test.rb +4 -0
  242. data/lib/generators/test_unit/integration/integration_generator.rb +13 -0
  243. data/lib/generators/test_unit/integration/templates/integration_test.rb +10 -0
  244. data/lib/generators/test_unit/mailer/mailer_generator.rb +21 -0
  245. data/lib/generators/test_unit/mailer/templates/fixture +3 -0
  246. data/lib/generators/test_unit/mailer/templates/functional_test.rb +22 -0
  247. data/lib/generators/test_unit/model/model_generator.rb +24 -0
  248. data/lib/generators/test_unit/model/templates/fixtures.yml +23 -0
  249. data/lib/generators/test_unit/model/templates/unit_test.rb +8 -0
  250. data/lib/generators/test_unit/observer/observer_generator.rb +13 -0
  251. data/lib/generators/test_unit/observer/templates/unit_test.rb +8 -0
  252. data/lib/generators/test_unit/performance/performance_generator.rb +13 -0
  253. data/lib/generators/test_unit/performance/templates/performance_test.rb +9 -0
  254. data/lib/generators/test_unit/plugin/plugin_generator.rb +13 -0
  255. data/lib/generators/test_unit/plugin/templates/%file_name%_test.rb.tt +8 -0
  256. data/lib/generators/test_unit/plugin/templates/test_helper.rb +3 -0
  257. data/lib/generators/test_unit/scaffold/scaffold_generator.rb +18 -0
  258. data/lib/generators/test_unit/scaffold/templates/functional_test.rb +47 -0
  259. data/lib/rails.rb +95 -0
  260. data/lib/rails/all.rb +14 -0
  261. data/lib/rails/application.rb +125 -0
  262. data/lib/rails/application/bootstrap.rb +85 -0
  263. data/lib/rails/application/configurable.rb +19 -0
  264. data/lib/rails/application/configuration.rb +86 -0
  265. data/lib/rails/application/finisher.rb +49 -0
  266. data/lib/rails/application/metal_loader.rb +50 -0
  267. data/lib/rails/application/railties.rb +31 -0
  268. data/lib/rails/application/routes_reloader.rb +46 -0
  269. data/lib/rails/backtrace_cleaner.rb +54 -0
  270. data/lib/rails/code_statistics.rb +107 -0
  271. data/lib/rails/commands.rb +72 -0
  272. data/lib/rails/commands/application.rb +13 -0
  273. data/lib/rails/commands/console.rb +55 -0
  274. data/lib/rails/commands/dbconsole.rb +104 -0
  275. data/lib/rails/commands/destroy.rb +9 -0
  276. data/lib/rails/commands/generate.rb +9 -0
  277. data/lib/rails/commands/performance/benchmarker.rb +23 -0
  278. data/lib/rails/commands/performance/profiler.rb +46 -0
  279. data/lib/rails/commands/plugin.rb +542 -0
  280. data/lib/rails/commands/runner.rb +51 -0
  281. data/lib/rails/commands/server.rb +75 -0
  282. data/lib/rails/commands/update.rb +9 -0
  283. data/lib/rails/configuration.rb +191 -0
  284. data/lib/rails/console/app.rb +33 -0
  285. data/lib/rails/console/helpers.rb +5 -0
  286. data/lib/rails/console/sandbox.rb +6 -0
  287. data/lib/rails/deprecation.rb +62 -0
  288. data/lib/rails/dispatcher.rb +24 -0
  289. data/lib/rails/engine.rb +130 -0
  290. data/lib/rails/engine/configurable.rb +25 -0
  291. data/lib/rails/engine/configuration.rb +49 -0
  292. data/lib/rails/generators.rb +289 -0
  293. data/lib/rails/generators/actions.rb +309 -0
  294. data/lib/rails/generators/active_model.rb +78 -0
  295. data/lib/rails/generators/base.rb +362 -0
  296. data/lib/rails/generators/generated_attribute.rb +48 -0
  297. data/lib/rails/generators/migration.rb +64 -0
  298. data/lib/rails/generators/named_base.rb +95 -0
  299. data/lib/rails/generators/resource_helpers.rb +80 -0
  300. data/lib/rails/generators/test_case.rb +239 -0
  301. data/lib/rails/initializable.rb +97 -0
  302. data/lib/rails/paths.rb +144 -0
  303. data/lib/rails/performance_test_help.rb +3 -0
  304. data/lib/rails/plugin.rb +64 -0
  305. data/lib/rails/rack.rb +8 -0
  306. data/lib/rails/rack/debugger.rb +23 -0
  307. data/lib/rails/rack/log_tailer.rb +33 -0
  308. data/lib/rails/rack/logger.rb +34 -0
  309. data/lib/rails/rack/static.rb +5 -0
  310. data/lib/rails/railtie.rb +74 -0
  311. data/lib/rails/railtie/configurable.rb +23 -0
  312. data/lib/rails/railtie/configuration.rb +9 -0
  313. data/lib/rails/railties_path.rb +1 -0
  314. data/lib/rails/ruby_version_check.rb +10 -0
  315. data/lib/rails/rubyprof_ext.rb +35 -0
  316. data/lib/rails/source_annotation_extractor.rb +102 -0
  317. data/lib/rails/subscriber.rb +108 -0
  318. data/lib/rails/subscriber/test_helper.rb +98 -0
  319. data/lib/rails/tasks.rb +16 -0
  320. data/lib/rails/tasks/annotations.rake +20 -0
  321. data/lib/rails/tasks/documentation.rake +96 -0
  322. data/lib/rails/tasks/framework.rake +69 -0
  323. data/lib/rails/tasks/log.rake +9 -0
  324. data/lib/rails/tasks/middleware.rake +7 -0
  325. data/lib/rails/tasks/misc.rake +71 -0
  326. data/lib/rails/tasks/routes.rake +17 -0
  327. data/lib/rails/tasks/statistics.rake +16 -0
  328. data/lib/rails/tasks/tmp.rake +37 -0
  329. data/lib/rails/test_help.rb +30 -0
  330. data/lib/rails/test_unit/railtie.rb +17 -0
  331. data/lib/rails/test_unit/testing.rake +130 -0
  332. data/lib/rails/version.rb +9 -0
  333. data/lib/rails/webrick_server.rb +156 -0
  334. metadata +427 -0
@@ -0,0 +1,34 @@
1
+ module RailsGuides
2
+ module Helpers
3
+ def guide(name, url, options = {}, &block)
4
+ link = content_tag(:a, :href => url) { name }
5
+ result = content_tag(:dt, link)
6
+
7
+ if ticket = options[:ticket]
8
+ result << content_tag(:dd, lh(ticket), :class => 'ticket')
9
+ end
10
+
11
+ result << content_tag(:dd, capture(&block))
12
+ concat(result)
13
+ end
14
+
15
+ def lh(id, label = "Lighthouse Ticket")
16
+ url = "http://rails.lighthouseapp.com/projects/16213/tickets/#{id}"
17
+ content_tag(:a, label, :href => url)
18
+ end
19
+
20
+ def author(name, nick, image = 'credits_pic_blank.gif', &block)
21
+ image = "images/#{image}"
22
+
23
+ result = content_tag(:img, nil, :src => image, :class => 'left pic', :alt => name)
24
+ result << content_tag(:h3, name)
25
+ result << content_tag(:p, capture(&block))
26
+ concat content_tag(:div, result, :class => 'clearfix', :id => nick)
27
+ end
28
+
29
+ def code(&block)
30
+ c = capture(&block)
31
+ content_tag(:code, c)
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,55 @@
1
+ module RailsGuides
2
+ class Indexer
3
+ attr_reader :body, :result, :level_hash
4
+
5
+ def initialize(body)
6
+ @body = body
7
+ @result = @body.dup
8
+ end
9
+
10
+ def index
11
+ @level_hash = process(body)
12
+ end
13
+
14
+ private
15
+
16
+ def process(string, current_level= 3, counters = [1])
17
+ s = StringScanner.new(string)
18
+
19
+ level_hash = ActiveSupport::OrderedHash.new
20
+
21
+ while !s.eos?
22
+ s.match?(/h[0-9]\..*$/)
23
+ if matched = s.matched
24
+ matched =~ /h([0-9])\.(.*)$/
25
+ level, title = $1.to_i, $2
26
+
27
+ if level < current_level
28
+ # This is needed. Go figure.
29
+ return level_hash
30
+ elsif level == current_level
31
+ index = counters.join(".")
32
+ bookmark = '#' + title.strip.downcase.gsub(/\s+|_/, '-').delete('^a-z0-9-')
33
+
34
+ raise "Parsing Fail" unless @result.sub!(matched, "h#{level}(#{bookmark}). #{index}#{title}")
35
+
36
+ key = {
37
+ :title => title,
38
+ :id => bookmark
39
+ }
40
+ # Recurse
41
+ counters << 1
42
+ level_hash[key] = process(s.post_match, current_level + 1, counters)
43
+ counters.pop
44
+
45
+ # Increment the current level
46
+ last = counters.pop
47
+ counters << last + 1
48
+ end
49
+ end
50
+ s.getch
51
+ end
52
+ level_hash
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,31 @@
1
+ module RailsGuides
2
+ module Levenshtein
3
+ # Based on the pseudocode in http://en.wikipedia.org/wiki/Levenshtein_distance.
4
+ def self.distance(s1, s2)
5
+ s = s1.unpack('U*')
6
+ t = s2.unpack('U*')
7
+ m = s.length
8
+ n = t.length
9
+
10
+ # matrix initialization
11
+ d = []
12
+ 0.upto(m) { |i| d << [i] }
13
+ 0.upto(n) { |j| d[0][j] = j }
14
+
15
+ # distance computation
16
+ 1.upto(m) do |i|
17
+ 1.upto(n) do |j|
18
+ cost = s[i] == t[j] ? 0 : 1
19
+ d[i][j] = [
20
+ d[i-1][j] + 1, # deletion
21
+ d[i][j-1] + 1, # insertion
22
+ d[i-1][j-1] + cost, # substitution
23
+ ].min
24
+ end
25
+ end
26
+
27
+ # all done
28
+ return d[m][n]
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,41 @@
1
+ module RailsGuides
2
+ module TextileExtensions
3
+ def notestuff(body)
4
+ body.gsub!(/^(IMPORTANT|CAUTION|WARNING|NOTE|INFO)(?:\.|\:)(.*)$/) do |m|
5
+ css_class = $1.downcase
6
+ css_class = 'warning' if ['caution', 'important'].include?(css_class)
7
+
8
+ result = "<div class='#{css_class}'><p>"
9
+ result << $2.strip
10
+ result << '</p></div>'
11
+ result
12
+ end
13
+ end
14
+
15
+ def tip(body)
16
+ body.gsub!(/^(TIP)\:(.*)$/) do |m|
17
+ result = "<div class='info'><p>"
18
+ result << $2.strip
19
+ result << '</p></div>'
20
+ result
21
+ end
22
+ end
23
+
24
+ def plusplus(body)
25
+ body.gsub!(/\+(.*?)\+/) do |m|
26
+ "<notextile><tt>#{$1}</tt></notextile>"
27
+ end
28
+
29
+ # The real plus sign
30
+ body.gsub!('<plus>', '+')
31
+ end
32
+
33
+ def code(body)
34
+ body.gsub!(%r{<(yaml|shell|ruby|erb|html|sql|plain)>(.*?)</\1>}m) do |m|
35
+ es = ERB::Util.h($2)
36
+ css_class = ['erb', 'shell'].include?($1) ? 'html' : $1
37
+ %{<notextile><div class="code_container"><code class="#{css_class}">#{es}</code></div></notextile>}
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,422 @@
1
+ h2. Ruby on Rails 2.2 Release Notes
2
+
3
+ Rails 2.2 delivers a number of new and improved features. This list covers the major upgrades, but doesn't include every little bug fix and change. If you want to see everything, check out the "list of commits":http://github.com/rails/rails/commits/master in the main Rails repository on GitHub.
4
+
5
+ Along with Rails, 2.2 marks the launch of the "Ruby on Rails Guides":http://guides.rubyonrails.org/, the first results of the ongoing "Rails Guides hackfest":http://hackfest.rubyonrails.org/guide. This site will deliver high-quality documentation of the major features of Rails.
6
+
7
+ endprologue.
8
+
9
+ h3. Infrastructure
10
+
11
+ Rails 2.2 is a significant release for the infrastructure that keeps Rails humming along and connected to the rest of the world.
12
+
13
+ h4. Internationalization
14
+
15
+ Rails 2.2 supplies an easy system for internationalization (or i18n, for those of you tired of typing).
16
+
17
+ * Lead Contributors: Rails i18 Team
18
+ * More information :
19
+ ** "Official Rails i18 website":http://rails-i18n.org
20
+ ** "Finally. Ruby on Rails gets internationalized":http://www.artweb-design.de/2008/7/18/finally-ruby-on-rails-gets-internationalized
21
+ ** "Localizing Rails : Demo application":http://github.com/clemens/i18n_demo_app
22
+
23
+ h4. Compatibility with Ruby 1.9 and JRuby
24
+
25
+ Along with thread safety, a lot of work has been done to make Rails work well with JRuby and the upcoming Ruby 1.9. With Ruby 1.9 being a moving target, running edge Rails on edge Ruby is still a hit-or-miss proposition, but Rails is ready to make the transition to Ruby 1.9 when the latter is released.
26
+
27
+ h3. Documentation
28
+
29
+ The internal documentation of Rails, in the form of code comments, has been improved in numerous places. In addition, the "Ruby on Rails Guides":http://guides.rubyonrails.org/ project is the definitive source for information on major Rails components. In its first official release, the Guides page includes:
30
+
31
+ * "Getting Started with Rails":http://guides.rubyonrails.org/getting_started.html
32
+ * "Rails Database Migrations":http://guides.rubyonrails.org/migrations.html
33
+ * "Active Record Associations":http://guides.rubyonrails.org/association_basics.html
34
+ * "Active Record Query Interface":http://guides.rubyonrails.org/active_record_querying.html
35
+ * "Layouts and Rendering in Rails":http://guides.rubyonrails.org/layouts_and_rendering.html
36
+ * "Action View Form Helpers":http://guides.rubyonrails.org/form_helpers.html
37
+ * "Rails Routing from the Outside In":http://guides.rubyonrails.org/routing.html
38
+ * "Action Controller Overview":http://guides.rubyonrails.org/action_controller_overview.html
39
+ * "Rails Caching":http://guides.rubyonrails.org/caching_with_rails.html
40
+ * "A Guide to Testing Rails Applications":http://guides.rubyonrails.org/testing.html
41
+ * "Securing Rails Applications":http://guides.rubyonrails.org/security.html
42
+ * "Debugging Rails Applications":http://guides.rubyonrails.org/debugging_rails_applications.html
43
+ * "Performance Testing Rails Applications":http://guides.rubyonrails.org/performance_testing.html
44
+ * "The Basics of Creating Rails Plugins":http://guides.rubyonrails.org/plugins.html
45
+
46
+ All told, the Guides provide tens of thousands of words of guidance for beginning and intermediate Rails developers.
47
+
48
+ If you want to generate these guides locally, inside your application:
49
+
50
+ <ruby>
51
+ rake doc:guides
52
+ </ruby>
53
+
54
+ This will put the guides inside +Rails.root/doc/guides+ and you may start surfing straight away by opening +Rails.root/doc/guides/index.html+ in your favourite browser.
55
+
56
+ * Lead Contributors: "Rails Documentation Team":http://guides.rails.info/credits.html
57
+ * Major contributions from "Xavier Noria":http://advogato.org/person/fxn/diary.html and "Hongli Lai":http://izumi.plan99.net/blog/.
58
+ * More information:
59
+ ** "Rails Guides hackfest":http://hackfest.rubyonrails.org/guide
60
+ ** "Help improve Rails documentation on Git branch":http://weblog.rubyonrails.org/2008/5/2/help-improve-rails-documentation-on-git-branch
61
+
62
+ h3. Better integration with HTTP : Out of the box ETag support
63
+
64
+ Supporting the etag and last modified timestamp in HTTP headers means that Rails can now send back an empty response if it gets a request for a resource that hasn't been modified lately. This allows you to check whether a response needs to be sent at all.
65
+
66
+ <ruby>
67
+ class ArticlesController < ApplicationController
68
+ def show_with_respond_to_block
69
+ @article = Article.find(params[:id])
70
+
71
+ # If the request sends headers that differs from the options provided to stale?, then
72
+ # the request is indeed stale and the respond_to block is triggered (and the options
73
+ # to the stale? call is set on the response).
74
+ #
75
+ # If the request headers match, then the request is fresh and the respond_to block is
76
+ # not triggered. Instead the default render will occur, which will check the last-modified
77
+ # and etag headers and conclude that it only needs to send a "304 Not Modified" instead
78
+ # of rendering the template.
79
+ if stale?(:last_modified => @article.published_at.utc, :etag => @article)
80
+ respond_to do |wants|
81
+ # normal response processing
82
+ end
83
+ end
84
+ end
85
+
86
+ def show_with_implied_render
87
+ @article = Article.find(params[:id])
88
+
89
+ # Sets the response headers and checks them against the request, if the request is stale
90
+ # (i.e. no match of either etag or last-modified), then the default render of the template happens.
91
+ # If the request is fresh, then the default render will return a "304 Not Modified"
92
+ # instead of rendering the template.
93
+ fresh_when(:last_modified => @article.published_at.utc, :etag => @article)
94
+ end
95
+ end
96
+ </ruby>
97
+
98
+ h3. Thread Safety
99
+
100
+ The work done to make Rails thread-safe is rolling out in Rails 2.2. Depending on your web server infrastructure, this means you can handle more requests with fewer copies of Rails in memory, leading to better server performance and higher utilization of multiple cores.
101
+
102
+ To enable multithreaded dispatching in production mode of your application, add the following line in your +config/environments/production.rb+:
103
+
104
+ <ruby>
105
+ config.threadsafe!
106
+ </ruby>
107
+
108
+ * More information :
109
+ ** "Thread safety for your Rails":http://m.onkey.org/2008/10/23/thread-safety-for-your-rails
110
+ ** "Thread safety project announcement":http://weblog.rubyonrails.org/2008/8/16/josh-peek-officially-joins-the-rails-core
111
+ ** "Q/A: What Thread-safe Rails Means":http://blog.headius.com/2008/08/qa-what-thread-safe-rails-means.html
112
+
113
+ h3. Active Record
114
+
115
+ There are two big additions to talk about here: transactional migrations and pooled database transactions. There's also a new (and cleaner) syntax for join table conditions, as well as a number of smaller improvements.
116
+
117
+ h4. Transactional Migrations
118
+
119
+ Historically, multiple-step Rails migrations have been a source of trouble. If something went wrong during a migration, everything before the error changed the database and everything after the error wasn't applied. Also, the migration version was stored as having been executed, which means that it couldn't be simply rerun by +rake db:migrate:redo+ after you fix the problem. Transactional migrations change this by wrapping migration steps in a DDL transaction, so that if any of them fail, the entire migration is undone. In Rails 2.2, transactional migrations are supported on PostgreSQL out of the box. The code is extensible to other database types in the future - and IBM has already extended it to support the DB2 adapter.
120
+
121
+ * Lead Contributor: "Adam Wiggins":http://adam.blog.heroku.com/
122
+ * More information:
123
+ ** "DDL Transactions":http://adam.blog.heroku.com/past/2008/9/3/ddl_transactions/
124
+ ** "A major milestone for DB2 on Rails":http://db2onrails.com/2008/11/08/a-major-milestone-for-db2-on-rails/
125
+
126
+ h4. Connection Pooling
127
+
128
+ Connection pooling lets Rails distribute database requests across a pool of database connections that will grow to a maximum size (by default 5, but you can add a +pool+ key to your +database.yml+ to adjust this). This helps remove bottlenecks in applications that support many concurrent users. There's also a +wait_timeout+ that defaults to 5 seconds before giving up. +ActiveRecord::Base.connection_pool+ gives you direct access to the pool if you need it.
129
+
130
+ <ruby>
131
+ development:
132
+ adapter: mysql
133
+ username: root
134
+ database: sample_development
135
+ pool: 10
136
+ wait_timeout: 10
137
+ </ruby>
138
+
139
+ * Lead Contributor: "Nick Sieger":http://blog.nicksieger.com/
140
+ * More information:
141
+ ** "What's New in Edge Rails: Connection Pools":http://ryandaigle.com/articles/2008/9/7/what-s-new-in-edge-rails-connection-pools
142
+
143
+ h4. Hashes for Join Table Conditions
144
+
145
+ You can now specify conditions on join tables using a hash. This is a big help if you need to query across complex joins.
146
+
147
+ <ruby>
148
+ class Photo < ActiveRecord::Base
149
+ belongs_to :product
150
+ end
151
+
152
+ class Product < ActiveRecord::Base
153
+ has_many :photos
154
+ end
155
+
156
+ # Get all products with copyright-free photos:
157
+ Product.all(:joins => :photos, :conditions => { :photos => { :copyright => false }})
158
+ </ruby>
159
+
160
+ * More information:
161
+ ** "What's New in Edge Rails: Easy Join Table Conditions":http://ryandaigle.com/articles/2008/7/7/what-s-new-in-edge-rails-easy-join-table-conditions
162
+
163
+ h4. New Dynamic Finders
164
+
165
+ Two new sets of methods have been added to Active Record's dynamic finders family.
166
+
167
+ h5. +find_last_by_<em>attribute</em>+
168
+
169
+ The +find_last_by_<em>attribute</em>+ method is equivalent to +Model.last(:conditions => {:attribute => value})+
170
+
171
+ <ruby>
172
+ # Get the last user who signed up from London
173
+ User.find_last_by_city('London')
174
+ </ruby>
175
+
176
+ * Lead Contributor: "Emilio Tagua":http://www.workingwithrails.com/person/9147-emilio-tagua
177
+
178
+ h5. +find_by_<em>attribute</em>!+
179
+
180
+ The new bang! version of +find_by_<em>attribute</em>!+ is equivalent to +Model.first(:conditions => {:attribute => value}) || raise ActiveRecord::RecordNotFound+ Instead of returning +nil+ if it can't find a matching record, this method will raise an exception if it cannot find a match.
181
+
182
+ <ruby>
183
+ # Raise ActiveRecord::RecordNotFound exception if 'Moby' hasn't signed up yet!
184
+ User.find_by_name!('Moby')
185
+ </ruby>
186
+
187
+ * Lead Contributor: "Josh Susser":http://blog.hasmanythrough.com
188
+
189
+ h4. Associations Respect Private/Protected Scope
190
+
191
+ Active Record association proxies now respect the scope of methods on the proxied object. Previously (given User has_one :account) +@user.account.private_method+ would call the private method on the associated Account object. That fails in Rails 2.2; if you need this functionality, you should use +@user.account.send(:private_method)+ (or make the method public instead of private or protected). Please note that if you're overriding +method_missing+, you should also override +respond_to+ to match the behavior in order for associations to function normally.
192
+
193
+ * Lead Contributor: Adam Milligan
194
+ * More information:
195
+ ** "Rails 2.2 Change: Private Methods on Association Proxies are Private":http://afreshcup.com/2008/10/24/rails-22-change-private-methods-on-association-proxies-are-private/
196
+
197
+ h4. Other ActiveRecord Changes
198
+
199
+ * +rake db:migrate:redo+ now accepts an optional VERSION to target that specific migration to redo
200
+ * Set +config.active_record.timestamped_migrations = false+ to have migrations with numeric prefix instead of UTC timestamp.
201
+ * Counter cache columns (for associations declared with +:counter_cache => true+) do not need to be initialized to zero any longer.
202
+ * +ActiveRecord::Base.human_name+ for an internationalization-aware humane translation of model names
203
+
204
+ h3. Action Controller
205
+
206
+ On the controller side, there are several changes that will help tidy up your routes. There are also some internal changes in the routing engine to lower memory usage on complex applications.
207
+
208
+ h4. Shallow Route Nesting
209
+
210
+ Shallow route nesting provides a solution to the well-known difficulty of using deeply-nested resources. With shallow nesting, you need only supply enough information to uniquely identify the resource that you want to work with.
211
+
212
+ <ruby>
213
+ map.resources :publishers, :shallow => true do |publisher|
214
+ publisher.resources :magazines do |magazine|
215
+ magazine.resources :photos
216
+ end
217
+ end
218
+ </ruby>
219
+
220
+ This will enable recognition of (among others) these routes:
221
+
222
+ <ruby>
223
+ /publishers/1 ==> publisher_path(1)
224
+ /publishers/1/magazines ==> publisher_magazines_path(1)
225
+ /magazines/2 ==> magazine_path(2)
226
+ /magazines/2/photos ==> magazines_photos_path(2)
227
+ /photos/3 ==> photo_path(3)
228
+ </ruby>
229
+
230
+ * Lead Contributor: "S. Brent Faulkner":http://www.unwwwired.net/
231
+ * More information:
232
+ ** "Rails Routing from the Outside In":http://guides.rubyonrails.org/routing.html#_nested_resources
233
+ ** "What's New in Edge Rails: Shallow Routes":http://ryandaigle.com/articles/2008/9/7/what-s-new-in-edge-rails-shallow-routes
234
+
235
+ h4. Method Arrays for Member or Collection Routes
236
+
237
+ You can now supply an array of methods for new member or collection routes. This removes the annoyance of having to define a route as accepting any verb as soon as you need it to handle more than one. With Rails 2.2, this is a legitimate route declaration:
238
+
239
+ <ruby>
240
+ map.resources :photos, :collection => { :search => [:get, :post] }
241
+ </ruby>
242
+
243
+ * Lead Contributor: "Brennan Dunn":http://brennandunn.com/
244
+
245
+ h4. Resources With Specific Actions
246
+
247
+ By default, when you use +map.resources+ to create a route, Rails generates routes for seven default actions (index, show, create, new, edit, update, and destroy). But each of these routes takes up memory in your application, and causes Rails to generate additional routing logic. Now you can use the +:only+ and +:except+ options to fine-tune the routes that Rails will generate for resources. You can supply a single action, an array of actions, or the special +:all+ or +:none+ options. These options are inherited by nested resources.
248
+
249
+ <ruby>
250
+ map.resources :photos, :only => [:index, :show]
251
+ map.resources :products, :except => :destroy
252
+ </ruby>
253
+
254
+ * Lead Contributor: "Tom Stuart":http://experthuman.com/
255
+
256
+ h4. Other Action Controller Changes
257
+
258
+ * You can now easily "show a custom error page":http://m.onkey.org/2008/7/20/rescue-from-dispatching for exceptions raised while routing a request.
259
+ * The HTTP Accept header is disabled by default now. You should prefer the use of formatted URLs (such as +/customers/1.xml+) to indicate the format that you want. If you need the Accept headers, you can turn them back on with +config.action_controller.use_accept_header = true+.
260
+ * Benchmarking numbers are now reported in milliseconds rather than tiny fractions of seconds
261
+ * Rails now supports HTTP-only cookies (and uses them for sessions), which help mitigate some cross-site scripting risks in newer browsers.
262
+ * +redirect_to+ now fully supports URI schemes (so, for example, you can redirect to a svn+ssh: URI).
263
+ * +render+ now supports a +:js+ option to render plain vanilla javascript with the right mime type.
264
+ * Request forgery protection has been tightened up to apply to HTML-formatted content requests only.
265
+ * Polymorphic URLs behave more sensibly if a passed parameter is nil. For example, calling +polymorphic_path([@project, @date, @area])+ with a nil date will give you +project_area_path+.
266
+
267
+ h3. Action View
268
+
269
+ * +javascript_include_tag+ and +stylesheet_link_tag+ support a new +:recursive+ option to be used along with +:all+, so that you can load an entire tree of files with a single line of code.
270
+ * The included Prototype javascript library has been upgraded to version 1.6.0.3.
271
+ * +RJS#page.reload+ to reload the browser's current location via javascript
272
+ * The +atom_feed+ helper now takes an +:instruct+ option to let you insert XML processing instructions.
273
+
274
+ h3. Action Mailer
275
+
276
+ Action Mailer now supports mailer layouts. You can make your HTML emails as pretty as your in-browser views by supplying an appropriately-named layout - for example, the +CustomerMailer+ class expects to use +layouts/customer_mailer.html.erb+.
277
+
278
+ * More information:
279
+ ** "What's New in Edge Rails: Mailer Layouts":http://ryandaigle.com/articles/2008/9/7/what-s-new-in-edge-rails-mailer-layouts
280
+
281
+ Action Mailer now offers built-in support for GMail's SMTP servers, by turning on STARTTLS automatically. This requires Ruby 1.8.7 to be installed.
282
+
283
+ h3. Active Support
284
+
285
+ Active Support now offers built-in memoization for Rails applications, the +each_with_object+ method, prefix support on delegates, and various other new utility methods.
286
+
287
+ h4. Memoization
288
+
289
+ Memoization is a pattern of initializing a method once and then stashing its value away for repeat use. You've probably used this pattern in your own applications:
290
+
291
+ <ruby>
292
+ def full_name
293
+ @full_name ||= "#{first_name} #{last_name}"
294
+ end
295
+ </ruby>
296
+
297
+ Memoization lets you handle this task in a declarative fashion:
298
+
299
+ <ruby>
300
+ extend ActiveSupport::Memoizable
301
+
302
+ def full_name
303
+ "#{first_name} #{last_name}"
304
+ end
305
+ memoize :full_name
306
+ </ruby>
307
+
308
+ Other features of memoization include +unmemoize+, +unmemoize_all+, and +memoize_all+ to turn memoization on or off.
309
+
310
+ * Lead Contributor: "Josh Peek":http://joshpeek.com/
311
+ * More information:
312
+ ** "What's New in Edge Rails: Easy Memoization":http://ryandaigle.com/articles/2008/7/16/what-s-new-in-edge-rails-memoization
313
+ ** "Memo-what? A Guide to Memoization":http://www.railway.at/articles/2008/09/20/a-guide-to-memoization
314
+
315
+ h4. each_with_object
316
+
317
+ The +each_with_object+ method provides an alternative to +inject+, using a method backported from Ruby 1.9. It iterates over a collection, passing the current element and the memo into the block.
318
+
319
+ <ruby>
320
+ %w(foo bar).each_with_object({}) { |str, hsh| hsh[str] = str.upcase } #=> {'foo' => 'FOO', 'bar' => 'BAR'}
321
+ </ruby>
322
+
323
+ Lead Contributor: "Adam Keys":http://therealadam.com/
324
+
325
+ h4. Delegates With Prefixes
326
+
327
+ If you delegate behavior from one class to another, you can now specify a prefix that will be used to identify the delegated methods. For example:
328
+
329
+ <ruby>
330
+ class Vendor < ActiveRecord::Base
331
+ has_one :account
332
+ delegate :email, :password, :to => :account, :prefix => true
333
+ end
334
+ </ruby>
335
+
336
+ This will produce delegated methods +vendor#account_email+ and +vendor#account_password+. You can also specify a custom prefix:
337
+
338
+ <ruby>
339
+ class Vendor < ActiveRecord::Base
340
+ has_one :account
341
+ delegate :email, :password, :to => :account, :prefix => :owner
342
+ end
343
+ </ruby>
344
+
345
+ This will produce delegated methods +vendor#owner_email+ and +vendor#owner_password+.
346
+
347
+ Lead Contributor: "Daniel Schierbeck":http://workingwithrails.com/person/5830-daniel-schierbeck
348
+
349
+ h4. Other Active Support Changes
350
+
351
+ * Extensive updates to +ActiveSupport::Multibyte+, including Ruby 1.9 compatibility fixes.
352
+ * The addition of +ActiveSupport::Rescuable+ allows any class to mix in the +rescue_from+ syntax.
353
+ * +past?+, +today?+ and +future?+ for +Date+ and +Time+ classes to facilitate date/time comparisons.
354
+ * +Array#second+ through +Array#fifth+ as aliases for +Array#[1]+ through +Array#[4]+
355
+ * +Enumerable#many?+ to encapsulate +collection.size > 1+
356
+ * +Inflector#parameterize+ produces a URL-ready version of its input, for use in +to_param+.
357
+ * +Time#advance+ recognizes fractional days and weeks, so you can do +1.7.weeks.ago+, +1.5.hours.since+, and so on.
358
+ * The included TzInfo library has been upgraded to version 0.3.12.
359
+ * +ActiveSuport::StringInquirer+ gives you a pretty way to test for equality in strings: +ActiveSupport::StringInquirer.new("abc").abc? => true+
360
+
361
+ h3. Railties
362
+
363
+ In Railties (the core code of Rails itself) the biggest changes are in the +config.gems+ mechanism.
364
+
365
+ h4. config.gems
366
+
367
+ To avoid deployment issues and make Rails applications more self-contained, it's possible to place copies of all of the gems that your Rails application requires in +/vendor/gems+. This capability first appeared in Rails 2.1, but it's much more flexible and robust in Rails 2.2, handling complicated dependencies between gems. Gem management in Rails includes these commands:
368
+
369
+ * +config.gem _gem_name_+ in your +config/environment.rb+ file
370
+ * +rake gems+ to list all configured gems, as well as whether they (and their dependencies) are installed, frozen, or framework (framework gems are those loaded by Rails before the gem dependency code is executed; such gems cannot be frozen)
371
+ * +rake gems:install+ to install missing gems to the computer
372
+ * +rake gems:unpack+ to place a copy of the required gems into +/vendor/gems+
373
+ * +rake gems:unpack:dependencies+ to get copies of the required gems and their dependencies into +/vendor/gems+
374
+ * +rake gems:build+ to build any missing native extensions
375
+ * +rake gems:refresh_specs+ to bring vendored gems created with Rails 2.1 into alignment with the Rails 2.2 way of storing them
376
+
377
+ You can unpack or install a single gem by specifying +GEM=_gem_name_+ on the command line.
378
+
379
+ * Lead Contributor: "Matt Jones":http://github.com/al2o3cr
380
+ * More information:
381
+ ** "What's New in Edge Rails: Gem Dependencies":http://ryandaigle.com/articles/2008/4/1/what-s-new-in-edge-rails-gem-dependencies
382
+ ** "Rails 2.1.2 and 2.2RC1: Update Your RubyGems":http://afreshcup.com/2008/10/25/rails-212-and-22rc1-update-your-rubygems/
383
+ ** "Detailed discussion on Lighthouse":http://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/1128
384
+
385
+ h4. Other Railties Changes
386
+
387
+ * If you're a fan of the "Thin":http://code.macournoyer.com/thin/ web server, you'll be happy to know that +script/server+ now supports Thin directly.
388
+ * +script/plugin install <plugin> -r <revision>+ now works with git-based as well as svn-based plugins.
389
+ * +script/console+ now supports a +--debugger+ option
390
+ * Instructions for setting up a continuous integration server to build Rails itself are included in the Rails source
391
+ * +rake notes:custom ANNOTATION=MYFLAG+ lets you list out custom annotations.
392
+ * Wrapped +Rails.env+ in +StringInquirer+ so you can do +Rails.env.development?+
393
+ * To eliminate deprecation warnings and properly handle gem dependencies, Rails now requires rubygems 1.3.1 or higher.
394
+
395
+ h3. Deprecated
396
+
397
+ A few pieces of older code are deprecated in this release:
398
+
399
+ * +Rails::SecretKeyGenerator+ has been replaced by +ActiveSupport::SecureRandom+
400
+ * +render_component+ is deprecated. There's a "render_components plugin":http://github.com/rails/render_component/tree/master available if you need this functionality.
401
+ * Implicit local assignments when rendering partials has been deprecated.
402
+
403
+ <ruby>
404
+ def partial_with_implicit_local_assignment
405
+ @customer = Customer.new("Marcel")
406
+ render :partial => "customer"
407
+ end
408
+ </ruby>
409
+
410
+ Previously the above code made available a local variable called +customer+ inside the partial 'customer'. You should explicitly pass all the variables via :locals hash now.
411
+
412
+ * +country_select+ has been removed. See the "deprecation page":http://www.rubyonrails.org/deprecation/list-of-countries for more information and a plugin replacement.
413
+ * +ActiveRecord::Base.allow_concurrency+ no longer has any effect.
414
+ * +ActiveRecord::Errors.default_error_messages+ has been deprecated in favor of +I18n.translate('activerecord.errors.messages')+
415
+ * The +%s+ and +%d+ interpolation syntax for internationalization is deprecated.
416
+ * +String#chars+ has been deprecated in favor of +String#mb_chars+.
417
+ * Durations of fractional months or fractional years are deprecated. Use Ruby's core +Date+ and +Time+ class arithmetic instead.
418
+ * +Request#relative_url_root+ is deprecated. Use +ActionController::Base.relative_url_root+ instead.
419
+
420
+ h3. Credits
421
+
422
+ Release notes compiled by "Mike Gunderloy":http://afreshcup.com