rails 2.2.3 → 2.3.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rails might be problematic. Click here for more details.

Files changed (229) hide show
  1. data/CHANGELOG +272 -191
  2. data/MIT-LICENSE +1 -1
  3. data/README +6 -19
  4. data/Rakefile +24 -71
  5. data/bin/rails +1 -0
  6. data/builtin/rails_info/rails/info.rb +12 -8
  7. data/configs/databases/mysql.yml +3 -0
  8. data/configs/initializers/backtrace_silencers.rb +7 -0
  9. data/configs/initializers/new_rails_defaults.rb +2 -0
  10. data/configs/initializers/session_store.rb +15 -0
  11. data/dispatches/config.ru +7 -0
  12. data/doc/README_FOR_APP +2 -5
  13. data/environments/boot.rb +1 -0
  14. data/environments/environment.rb +14 -48
  15. data/environments/production.rb +11 -7
  16. data/environments/test.rb +6 -0
  17. data/helpers/application_controller.rb +10 -0
  18. data/helpers/test_helper.rb +1 -1
  19. data/html/500.html +0 -3
  20. data/html/index.html +1 -0
  21. data/lib/commands/about.rb +1 -1
  22. data/lib/commands/dbconsole.rb +18 -2
  23. data/lib/commands/plugin.rb +4 -3
  24. data/lib/commands/runner.rb +13 -7
  25. data/lib/commands/server.rb +98 -33
  26. data/lib/console_app.rb +4 -4
  27. data/lib/console_with_helpers.rb +2 -23
  28. data/lib/dispatcher.rb +1 -1
  29. data/lib/fcgi_handler.rb +12 -10
  30. data/lib/initializer.rb +108 -41
  31. data/lib/rails/backtrace_cleaner.rb +54 -0
  32. data/lib/rails/gem_dependency.rb +124 -94
  33. data/lib/rails/plugin.rb +49 -6
  34. data/lib/rails/plugin/loader.rb +66 -27
  35. data/lib/rails/plugin/locator.rb +1 -1
  36. data/lib/rails/rack.rb +3 -1
  37. data/lib/rails/rack/debugger.rb +21 -0
  38. data/lib/rails/rack/log_tailer.rb +35 -0
  39. data/lib/rails/rack/metal.rb +51 -0
  40. data/lib/rails/rack/static.rb +15 -4
  41. data/lib/rails/version.rb +2 -2
  42. data/lib/rails_generator/base.rb +3 -0
  43. data/lib/rails_generator/commands.rb +8 -3
  44. data/lib/rails_generator/generators/applications/app/app_generator.rb +210 -136
  45. data/lib/rails_generator/generators/applications/app/scm/git.rb +16 -0
  46. data/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
  47. data/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
  48. data/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
  49. data/lib/rails_generator/generators/components/controller/USAGE +12 -11
  50. data/lib/rails_generator/generators/components/controller/controller_generator.rb +7 -1
  51. data/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
  52. data/lib/rails_generator/generators/components/helper/USAGE +24 -0
  53. data/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
  54. data/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
  55. data/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
  56. data/lib/rails_generator/generators/components/metal/USAGE +8 -0
  57. data/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
  58. data/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
  59. data/lib/rails_generator/generators/components/resource/USAGE +2 -2
  60. data/lib/rails_generator/generators/components/resource/resource_generator.rb +2 -0
  61. data/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
  62. data/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +2 -0
  63. data/lib/rails_generator/generators/components/scaffold/templates/controller.rb +1 -1
  64. data/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +4 -4
  65. data/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
  66. data/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +1 -1
  67. data/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +2 -2
  68. data/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +2 -2
  69. data/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +2 -2
  70. data/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +1 -1
  71. data/lib/rails_generator/secret_key_generator.rb +2 -0
  72. data/lib/tasks/databases.rake +13 -6
  73. data/lib/tasks/documentation.rake +2 -9
  74. data/lib/tasks/framework.rake +26 -1
  75. data/lib/tasks/gems.rake +33 -48
  76. data/lib/tasks/middleware.rake +7 -0
  77. data/lib/tasks/misc.rake +7 -0
  78. data/lib/tasks/statistics.rake +0 -1
  79. data/lib/tasks/testing.rake +5 -5
  80. data/lib/tasks/tmp.rake +2 -2
  81. data/lib/test_help.rb +16 -8
  82. metadata +92 -159
  83. data/bin/performance/request +0 -3
  84. data/bin/process/inspector +0 -3
  85. data/bin/process/reaper +0 -3
  86. data/bin/process/spawner +0 -3
  87. data/config.ru +0 -17
  88. data/configs/apache.conf +0 -40
  89. data/configs/lighttpd.conf +0 -54
  90. data/doc/guides/html/2_2_release_notes.html +0 -1185
  91. data/doc/guides/html/actioncontroller_basics.html +0 -1270
  92. data/doc/guides/html/activerecord_validations_callbacks.html +0 -749
  93. data/doc/guides/html/association_basics.html +0 -2585
  94. data/doc/guides/html/authors.html +0 -240
  95. data/doc/guides/html/benchmarking_and_profiling.html +0 -1018
  96. data/doc/guides/html/caching_with_rails.html +0 -583
  97. data/doc/guides/html/command_line.html +0 -434
  98. data/doc/guides/html/configuring.html +0 -438
  99. data/doc/guides/html/creating_plugins.html +0 -1594
  100. data/doc/guides/html/debugging_rails_applications.html +0 -1175
  101. data/doc/guides/html/finders.html +0 -1090
  102. data/doc/guides/html/form_helpers.html +0 -638
  103. data/doc/guides/html/getting_started_with_rails.html +0 -2066
  104. data/doc/guides/html/index.html +0 -349
  105. data/doc/guides/html/layouts_and_rendering.html +0 -1406
  106. data/doc/guides/html/migrations.html +0 -921
  107. data/doc/guides/html/routing_outside_in.html +0 -2213
  108. data/doc/guides/html/security.html +0 -1346
  109. data/doc/guides/html/testing_rails_applications.html +0 -1859
  110. data/doc/guides/source/2_2_release_notes.txt +0 -435
  111. data/doc/guides/source/actioncontroller_basics/changelog.txt +0 -5
  112. data/doc/guides/source/actioncontroller_basics/cookies.txt +0 -34
  113. data/doc/guides/source/actioncontroller_basics/csrf.txt +0 -32
  114. data/doc/guides/source/actioncontroller_basics/filters.txt +0 -119
  115. data/doc/guides/source/actioncontroller_basics/http_auth.txt +0 -24
  116. data/doc/guides/source/actioncontroller_basics/index.txt +0 -40
  117. data/doc/guides/source/actioncontroller_basics/introduction.txt +0 -9
  118. data/doc/guides/source/actioncontroller_basics/methods.txt +0 -39
  119. data/doc/guides/source/actioncontroller_basics/parameter_filtering.txt +0 -14
  120. data/doc/guides/source/actioncontroller_basics/params.txt +0 -93
  121. data/doc/guides/source/actioncontroller_basics/request_response_objects.txt +0 -43
  122. data/doc/guides/source/actioncontroller_basics/rescue.txt +0 -67
  123. data/doc/guides/source/actioncontroller_basics/session.txt +0 -187
  124. data/doc/guides/source/actioncontroller_basics/streaming.txt +0 -91
  125. data/doc/guides/source/actioncontroller_basics/verification.txt +0 -40
  126. data/doc/guides/source/active_record_basics.txt +0 -181
  127. data/doc/guides/source/activerecord_validations_callbacks.txt +0 -404
  128. data/doc/guides/source/association_basics.txt +0 -1840
  129. data/doc/guides/source/authors.txt +0 -39
  130. data/doc/guides/source/benchmarking_and_profiling/appendix.txt +0 -95
  131. data/doc/guides/source/benchmarking_and_profiling/digging_deeper.txt +0 -105
  132. data/doc/guides/source/benchmarking_and_profiling/edge_rails_features.txt +0 -185
  133. data/doc/guides/source/benchmarking_and_profiling/gameplan.txt +0 -27
  134. data/doc/guides/source/benchmarking_and_profiling/index.txt +0 -242
  135. data/doc/guides/source/benchmarking_and_profiling/rubyprof.txt +0 -179
  136. data/doc/guides/source/benchmarking_and_profiling/statistics.txt +0 -57
  137. data/doc/guides/source/caching_with_rails.txt +0 -367
  138. data/doc/guides/source/command_line.txt +0 -147
  139. data/doc/guides/source/configuring.txt +0 -225
  140. data/doc/guides/source/creating_plugins/acts_as_yaffle.txt +0 -191
  141. data/doc/guides/source/creating_plugins/appendix.txt +0 -46
  142. data/doc/guides/source/creating_plugins/controllers.txt +0 -59
  143. data/doc/guides/source/creating_plugins/core_ext.txt +0 -123
  144. data/doc/guides/source/creating_plugins/custom_route.txt +0 -69
  145. data/doc/guides/source/creating_plugins/gem.txt +0 -1
  146. data/doc/guides/source/creating_plugins/generator_method.txt +0 -89
  147. data/doc/guides/source/creating_plugins/helpers.txt +0 -51
  148. data/doc/guides/source/creating_plugins/index.txt +0 -52
  149. data/doc/guides/source/creating_plugins/migration_generator.txt +0 -156
  150. data/doc/guides/source/creating_plugins/models.txt +0 -76
  151. data/doc/guides/source/creating_plugins/odds_and_ends.txt +0 -69
  152. data/doc/guides/source/creating_plugins/test_setup.txt +0 -230
  153. data/doc/guides/source/debugging_rails_applications.txt +0 -733
  154. data/doc/guides/source/finders.txt +0 -668
  155. data/doc/guides/source/form_helpers.txt +0 -345
  156. data/doc/guides/source/getting_started_with_rails.txt +0 -1256
  157. data/doc/guides/source/images/belongs_to.png +0 -0
  158. data/doc/guides/source/images/bullet.gif +0 -0
  159. data/doc/guides/source/images/csrf.png +0 -0
  160. data/doc/guides/source/images/habtm.png +0 -0
  161. data/doc/guides/source/images/has_many.png +0 -0
  162. data/doc/guides/source/images/has_many_through.png +0 -0
  163. data/doc/guides/source/images/has_one.png +0 -0
  164. data/doc/guides/source/images/has_one_through.png +0 -0
  165. data/doc/guides/source/images/header_backdrop.png +0 -0
  166. data/doc/guides/source/images/icons/README +0 -5
  167. data/doc/guides/source/images/icons/callouts/1.png +0 -0
  168. data/doc/guides/source/images/icons/callouts/10.png +0 -0
  169. data/doc/guides/source/images/icons/callouts/11.png +0 -0
  170. data/doc/guides/source/images/icons/callouts/12.png +0 -0
  171. data/doc/guides/source/images/icons/callouts/13.png +0 -0
  172. data/doc/guides/source/images/icons/callouts/14.png +0 -0
  173. data/doc/guides/source/images/icons/callouts/15.png +0 -0
  174. data/doc/guides/source/images/icons/callouts/2.png +0 -0
  175. data/doc/guides/source/images/icons/callouts/3.png +0 -0
  176. data/doc/guides/source/images/icons/callouts/4.png +0 -0
  177. data/doc/guides/source/images/icons/callouts/5.png +0 -0
  178. data/doc/guides/source/images/icons/callouts/6.png +0 -0
  179. data/doc/guides/source/images/icons/callouts/7.png +0 -0
  180. data/doc/guides/source/images/icons/callouts/8.png +0 -0
  181. data/doc/guides/source/images/icons/callouts/9.png +0 -0
  182. data/doc/guides/source/images/icons/caution.png +0 -0
  183. data/doc/guides/source/images/icons/example.png +0 -0
  184. data/doc/guides/source/images/icons/home.png +0 -0
  185. data/doc/guides/source/images/icons/important.png +0 -0
  186. data/doc/guides/source/images/icons/next.png +0 -0
  187. data/doc/guides/source/images/icons/note.png +0 -0
  188. data/doc/guides/source/images/icons/prev.png +0 -0
  189. data/doc/guides/source/images/icons/tip.png +0 -0
  190. data/doc/guides/source/images/icons/up.png +0 -0
  191. data/doc/guides/source/images/icons/warning.png +0 -0
  192. data/doc/guides/source/images/polymorphic.png +0 -0
  193. data/doc/guides/source/images/rails_logo_remix.gif +0 -0
  194. data/doc/guides/source/images/ruby_on_rails_by_mike_rundle2.gif +0 -0
  195. data/doc/guides/source/images/session_fixation.png +0 -0
  196. data/doc/guides/source/index.txt +0 -118
  197. data/doc/guides/source/layouts_and_rendering.txt +0 -982
  198. data/doc/guides/source/migrations/anatomy_of_a_migration.txt +0 -85
  199. data/doc/guides/source/migrations/changelog.txt +0 -5
  200. data/doc/guides/source/migrations/creating_a_migration.txt +0 -109
  201. data/doc/guides/source/migrations/foreign_keys.txt +0 -8
  202. data/doc/guides/source/migrations/index.txt +0 -22
  203. data/doc/guides/source/migrations/rakeing_around.txt +0 -111
  204. data/doc/guides/source/migrations/scheming.txt +0 -47
  205. data/doc/guides/source/migrations/using_models_in_migrations.txt +0 -46
  206. data/doc/guides/source/migrations/writing_a_migration.txt +0 -159
  207. data/doc/guides/source/routing_outside_in.txt +0 -986
  208. data/doc/guides/source/security.txt +0 -984
  209. data/doc/guides/source/stylesheets/base.css +0 -358
  210. data/doc/guides/source/stylesheets/forms.css +0 -35
  211. data/doc/guides/source/stylesheets/more.css +0 -82
  212. data/doc/guides/source/templates/guides.html.erb +0 -97
  213. data/doc/guides/source/templates/inline.css +0 -165
  214. data/doc/guides/source/testing_rails_applications.txt +0 -995
  215. data/helpers/application.rb +0 -15
  216. data/lib/commands/performance/request.rb +0 -6
  217. data/lib/commands/process/inspector.rb +0 -68
  218. data/lib/commands/process/reaper.rb +0 -149
  219. data/lib/commands/process/spawner.rb +0 -219
  220. data/lib/commands/process/spinner.rb +0 -57
  221. data/lib/commands/servers/base.rb +0 -31
  222. data/lib/commands/servers/lighttpd.rb +0 -94
  223. data/lib/commands/servers/mongrel.rb +0 -69
  224. data/lib/commands/servers/new_mongrel.rb +0 -16
  225. data/lib/commands/servers/thin.rb +0 -25
  226. data/lib/commands/servers/webrick.rb +0 -66
  227. data/lib/rails/mongrel_server/commands.rb +0 -342
  228. data/lib/rails/mongrel_server/handler.rb +0 -55
  229. data/lib/rails/rack/logger.rb +0 -28
@@ -1,187 +0,0 @@
1
- == Session ==
2
-
3
- Your application has a session for each user in which you can store small amounts of data that will be persisted between requests. The session is only available in the controller and the view and can use one of a number of different storage mechanisms:
4
-
5
- * CookieStore - Stores everything on the client.
6
- * DRbStore - Stores the data on a DRb server.
7
- * MemCacheStore - Stores the data in a memcache.
8
- * ActiveRecordStore - Stores the data in a database using Active Record.
9
-
10
- All session stores use a cookie - this is required and Rails does not allow any part of the session to be passed in any other way (e.g. you can't use the query string to pass a session ID) because of security concerns (it's easier to hijack a session when the ID is part of the URL).
11
-
12
- Most stores use a cookie to store the session ID which is then used to look up the session data on the server. The default and recommended store, the CookieStore, does not store session data on the server, but in the cookie itself. The data is cryptographically signed to make it tamper-proof, but it is not encrypted, so anyone with access to it can read its contents but not edit it (Rails will not accept it if it has been edited). It can only store about 4kB of data - much less than the others - but this is usually enough. Storing large amounts of data is discouraged no matter which session store your application uses. You should especially avoid storing complex objects (anything other than basic Ruby objects, the most common example being model instances) in the session, as the server might not be able to reassemble them between requests, which will result in an error. The CookieStore has the added advantage that it does not require any setting up beforehand - Rails will generate a "secret key" which will be used to sign the cookie when you create the application.
13
-
14
- Read more about session storage in the link:../security.html[Security Guide].
15
-
16
- If you need a different session storage mechanism, you can change it in the `config/environment.rb` file:
17
-
18
- [source, ruby]
19
- ------------------------------------------
20
- # Set to one of [:active_record_store, :drb_store, :mem_cache_store, :cookie_store]
21
- config.action_controller.session_store = :active_record_store
22
- ------------------------------------------
23
-
24
- === Disabling the Session ===
25
-
26
- Sometimes you don't need a session. In this case, you can turn it off to avoid the unnecessary overhead. To do this, use the `session` class method in your controller:
27
-
28
- [source, ruby]
29
- ------------------------------------------
30
- class ApplicationController < ActionController::Base
31
- session :off
32
- end
33
- ------------------------------------------
34
-
35
- You can also turn the session on or off for a single controller:
36
-
37
- [source, ruby]
38
- ------------------------------------------
39
- # The session is turned off by default in ApplicationController, but we
40
- # want to turn it on for log in/out.
41
- class LoginsController < ActionController::Base
42
- session :on
43
- end
44
- ------------------------------------------
45
-
46
- Or even for specified actions:
47
-
48
- [source, ruby]
49
- ------------------------------------------
50
- class ProductsController < ActionController::Base
51
- session :on, :only => [:create, :update]
52
- end
53
- ------------------------------------------
54
-
55
- === Accessing the Session ===
56
-
57
- In your controller you can access the session through the `session` instance method.
58
-
59
- NOTE: There are two `session` methods, the class and the instance method. The class method which is described above is used to turn the session on and off while the instance method described below is used to access session values.
60
-
61
- Session values are stored using key/value pairs like a hash:
62
-
63
- [source, ruby]
64
- ------------------------------------------
65
- class ApplicationController < ActionController::Base
66
-
67
- private
68
-
69
- # Finds the User with the ID stored in the session with the key :current_user_id
70
- # This is a common way to handle user login in a Rails application; logging in sets the
71
- # session value and logging out removes it.
72
- def current_user
73
- @_current_user ||= session[:current_user_id] && User.find(session[:current_user_id])
74
- end
75
-
76
- end
77
- ------------------------------------------
78
-
79
- To store something in the session, just assign it to the key like a hash:
80
-
81
- [source, ruby]
82
- ------------------------------------------
83
- class LoginsController < ApplicationController
84
-
85
- # "Create" a login, aka "log the user in"
86
- def create
87
- if user = User.authenticate(params[:username, params[:password])
88
- # Save the user ID in the session so it can be used in subsequent requests
89
- session[:current_user_id] = user.id
90
- redirect_to root_url
91
- end
92
- end
93
-
94
- end
95
- ------------------------------------------
96
-
97
- To remove something from the session, assign that key to be `nil`:
98
-
99
- [source, ruby]
100
- ------------------------------------------
101
- class LoginsController < ApplicationController
102
-
103
- # "Delete" a login, aka "log the user out"
104
- def destroy
105
- # Remove the user id from the session
106
- session[:current_user_id] = nil
107
- redirect_to root_url
108
- end
109
-
110
- end
111
- ------------------------------------------
112
-
113
- To reset the entire session, use `reset_session`.
114
-
115
- === The flash ===
116
-
117
- The flash is a special part of the session which is cleared with each request. This means that values stored there will only be available in the next request, which is useful for storing error messages etc. It is accessed in much the same way as the session, like a hash. Let's use the act of logging out as an example. The controller can send a message which will be displayed to the user on the next request:
118
-
119
- [source, ruby]
120
- ------------------------------------------
121
- class LoginsController < ApplicationController
122
-
123
- def destroy
124
- session[:current_user_id] = nil
125
- flash[:notice] = "You have successfully logged out"
126
- redirect_to root_url
127
- end
128
-
129
- end
130
- ------------------------------------------
131
-
132
- The `destroy` action redirects to the application's `root_url`, where the message will be displayed. Note that it's entirely up to the next action to decide what, if anything, it will do with what the previous action put in the flash. It's conventional to display eventual errors or notices from the flash in the application's layout:
133
-
134
- ------------------------------------------
135
- <html>
136
- <!-- <head/> -->
137
- <body>
138
- <% if flash[:notice] -%>
139
- <p class="notice"><%= flash[:notice] %></p>
140
- <% end -%>
141
- <% if flash[:error] -%>
142
- <p class="error"><%= flash[:error] %></p>
143
- <% end -%>
144
- <!-- more content -->
145
- </body>
146
- </html>
147
- ------------------------------------------
148
-
149
- This way, if an action sets an error or a notice message, the layout will display it automatically.
150
-
151
- If you want a flash value to be carried over to another request, use the `keep` method:
152
-
153
- [source, ruby]
154
- ------------------------------------------
155
- class MainController < ApplicationController
156
-
157
- # Let's say this action corresponds to root_url, but you want all requests here to be redirected to
158
- # UsersController#index. If an action sets the flash and redirects here, the values would normally be
159
- # lost when another redirect happens, but you can use keep to make it persist for another request.
160
- def index
161
- flash.keep # Will persist all flash values. You can also use a key to keep only that value: flash.keep(:notice)
162
- redirect_to users_url
163
- end
164
-
165
- end
166
- ------------------------------------------
167
-
168
- ==== +flash.now+ ====
169
-
170
- By default, adding values to the flash will make them available to the next request, but sometimes you may want to access those values in the same request. For example, if the `create` action fails to save a resource and you render the `new` template directly, that's not going to result in a new request, but you may still want to display a message using the flash. To do this, you can use `flash.now` in the same way you use the normal `flash`:
171
-
172
- [source, ruby]
173
- ------------------------------------------
174
- class ClientsController < ApplicationController
175
-
176
- def create
177
- @client = Client.new(params[:client])
178
- if @client.save
179
- # ...
180
- else
181
- flash.now[:error] = "Could not save client"
182
- render :action => "new"
183
- end
184
- end
185
-
186
- end
187
- ------------------------------------------
@@ -1,91 +0,0 @@
1
- == Streaming and File Downloads ==
2
-
3
- Sometimes you may want to send a file to the user instead of rendering an HTML page. All controllers in Rails have the `send_data` and the `send_file` methods, that will both stream data to the client. `send_file` is a convenience method which lets you provide the name of a file on the disk and it will stream the contents of that file for you.
4
-
5
- To stream data to the client, use `send_data`:
6
-
7
- [source, ruby]
8
- ----------------------------
9
- require "prawn"
10
- class ClientsController < ApplicationController
11
-
12
- # Generate a PDF document with information on the client and return it.
13
- # The user will get the PDF as a file download.
14
- def download_pdf
15
- client = Client.find(params[:id])
16
- send_data(generate_pdf, :filename => "#{client.name}.pdf", :type => "application/pdf")
17
- end
18
-
19
- private
20
-
21
- def generate_pdf(client)
22
- Prawn::Document.new do
23
- text client.name, :align => :center
24
- text "Address: #{client.address}"
25
- text "Email: #{client.email}"
26
- end.render
27
- end
28
-
29
- end
30
- ----------------------------
31
-
32
- The `download_pdf` action in the example above will call a private method which actually generates the file (a PDF document) and returns it as a string. This string will then be streamed to the client as a file download and a filename will be suggested to the user. Sometimes when streaming files to the user, you may not want them to download the file. Take images, for example, which can be embedded into HTML pages. To tell the browser a file is not meant to be downloaded, you can set the `:disposition` option to "inline". The opposite and default value for this option is "attachment".
33
-
34
- === Sending Files ===
35
-
36
- If you want to send a file that already exists on disk, use the `send_file` method. This is usually not recommended, but can be useful if you want to perform some authentication before letting the user download the file.
37
-
38
- [source, ruby]
39
- ----------------------------
40
- class ClientsController < ApplicationController
41
-
42
- # Stream a file that has already been generated and stored on disk
43
- def download_pdf
44
- client = Client.find(params[:id])
45
- send_data("#{RAILS_ROOT}/files/clients/#{client.id}.pdf", :filename => "#{client.name}.pdf", :type => "application/pdf")
46
- end
47
-
48
- end
49
- ----------------------------
50
-
51
- This will read and stream the file 4Kb at the time, avoiding loading the entire file into memory at once. You can turn off streaming with the `:stream` option or adjust the block size with the `:buffer_size` option.
52
-
53
- WARNING: Be careful when using (or just don't use) "outside" data (params, cookies, etc) to locate the file on disk, as this is a security risk that might allow someone to gain access to files they are not meant to see.
54
-
55
- TIP: It is not recommended that you stream static files through Rails if you can instead keep them in a public folder on your web server. It is much more efficient to let the user download the file directly using Apache or another web server, keeping the request from unnecessarily going through the whole Rails stack.
56
-
57
- === RESTful Downloads ===
58
-
59
- While `send_data` works just fine, if you are creating a RESTful application having separate actions for file downloads is usually not necessary. In REST terminology, the PDF file from the example above can be considered just another representation of the client resource. Rails provides an easy and quite sleek way of doing "RESTful downloads". Here's how you can rewrite the example so that the PDF download is a part of the `show` action, without any streaming:
60
-
61
- [source, ruby]
62
- ----------------------------
63
- class ClientsController < ApplicationController
64
-
65
- # The user can request to receive this resource as HTML or PDF.
66
- def show
67
- @client = Client.find(params[:id])
68
-
69
- respond_to do |format|
70
- format.html
71
- format.pdf{ render :pdf => generate_pdf(@client) }
72
- end
73
- end
74
-
75
- end
76
- ----------------------------
77
-
78
- In order for this example to work, you have to add the PDF MIME type to Rails. This can be done by adding the following line to the file `config/initializers/mime_types.rb`:
79
-
80
- [source, ruby]
81
- ----------------------------
82
- Mime::Type.register "application/pdf", :pdf
83
- ----------------------------
84
-
85
- NOTE: Configuration files are not reloaded on each request, so you have to restart the server in order for their changes to take effect.
86
-
87
- Now the user can request to get a PDF version of a client just by adding ".pdf" to the URL:
88
-
89
- ----------------------------
90
- GET /clients/1.pdf
91
- ----------------------------
@@ -1,40 +0,0 @@
1
- == Verification ==
2
-
3
- Verifications make sure certain criteria are met in order for a controller or action to run. They can specify that a certain key (or several keys in the form of an array) is present in the `params`, `session` or `flash` hashes or that a certain HTTP method was used or that the request was made using XMLHTTPRequest (Ajax). The default action taken when these criteria are not met is to render a 400 Bad Request response, but you can customize this by specifying a redirect URL or rendering something else and you can also add flash messages and HTTP headers to the response. It is described in the link:http://api.rubyonrails.org/classes/ActionController/Verification/ClassMethods.html[API documentation] as "essentially a special kind of before_filter".
4
-
5
- Here's an example of using verification to make sure the user supplies a username and a password in order to log in:
6
-
7
- [source, ruby]
8
- ---------------------------------------
9
- class LoginsController < ApplicationController
10
-
11
- verify :params => [:username, :password],
12
- :render => {:action => "new"},
13
- :add_flash => {:error => "Username and password required to log in"}
14
-
15
- def create
16
- @user = User.authenticate(params[:username], params[:password])
17
- if @user
18
- flash[:notice] = "You're logged in"
19
- redirect_to root_url
20
- else
21
- render :action => "new"
22
- end
23
- end
24
-
25
- end
26
- ---------------------------------------
27
-
28
- Now the `create` action won't run unless the "username" and "password" parameters are present, and if they're not, an error message will be added to the flash and the "new" action will be rendered. But there's something rather important missing from the verification above: It will be used for *every* action in LoginsController, which is not what we want. You can limit which actions it will be used for with the `:only` and `:except` options just like a filter:
29
-
30
- [source, ruby]
31
- ---------------------------------------
32
- class LoginsController < ApplicationController
33
-
34
- verify :params => [:username, :password],
35
- :render => {:action => "new"},
36
- :add_flash => {:error => "Username and password required to log in"},
37
- :only => :create # Only run this verification for the "create" action
38
-
39
- end
40
- ---------------------------------------
@@ -1,181 +0,0 @@
1
- Active Record Basics
2
- ====================
3
-
4
- Active Record is a design pattern that mitigates the mind-numbing mental gymnastics often needed to get your application to communicate with a database. This guide uses a mix of real-world examples, metaphors and detailed explanations of the actual Rails source code to help you make the most of ActiveRecord.
5
-
6
- After reading this guide readers should have a strong grasp of the Active Record pattern and how it can be used with or without Rails. Hopefully, some of the philosophical and theoretical intentions discussed here will also make them a stronger and better developer.
7
-
8
- == ORM The Blueprint of Active Record
9
-
10
- If Active Record is the engine of Rails then ORM is the blueprint of that engine. ORM is short for “Object Relational Mapping” and is a programming concept used to make structures within a system relational. As a thought experiment imagine the components that make up a typical car. There are doors, seats, windows, engines etc. Viewed independently they are simple parts, yet when bolted together through the aid of a blueprint, the parts become a more complex device. ORM is the blueprint that describes how the individual parts relate to one another and in some cases infers the part’s purpose through the way the associations are described.
11
-
12
- == Active Record The Engine of Rails
13
-
14
- Active Record is a design pattern used to access data within a database. The name “Active Record” was coined by Martin Fowler in his book “Patterns of Enterprise Application Architecture”. Essentially, when a record is returned from the database instead of being just the data it is wrapped in a class, which gives you methods to control that data with. The rails framework is built around the MVC (Model View Controller) design patten and the Active Record is used as the default Model.
15
-
16
- The Rails community added several useful concepts to their version of Active Record, including inheritance and associations, which are extremely useful for web applications. The associations are created by using a DSL (domain specific language) of macros, and inheritance is achieved through the use of STI (Single Table Inheritance) at the database level.
17
-
18
- By following a few simple conventions the Rails Active Record will automatically map between:
19
-
20
- * Classes & Database Tables
21
- * Class attributes & Database Table Columns
22
-
23
- === Rails Active Record Conventions
24
- Here are the key conventions to consider when using Active Record.
25
-
26
- ==== Naming Conventions
27
- Database Table - Plural with underscores separating words i.e. (book_clubs)
28
- Model Class - Singular with the first letter of each word capitalized i.e. (BookClub)
29
- Here are some additional Examples:
30
-
31
- [grid="all"]
32
- `-------------`---------------
33
- Model / Class Table / Schema
34
- ----------------------------
35
- Post posts
36
- LineItem line_items
37
- Deer deer
38
- Mouse mice
39
- Person people
40
- ----------------------------
41
-
42
- ==== Schema Conventions
43
-
44
- To take advantage of some of the magic of Rails database tables must be modeled
45
- to reflect the ORM decisions that Rails makes.
46
-
47
- [grid="all"]
48
- `-------------`---------------------------------------------------------------------------------
49
- Convention
50
- -------------------------------------------------------------------------------------------------
51
- Foreign keys These fields are named table_id i.e. (item_id, order_id)
52
- Primary Key Rails automatically creates a primary key column named "id" unless told otherwise.
53
- -------------------------------------------------------------------------------------------------
54
-
55
- ==== Magic Field Names
56
-
57
- When these optional fields are used in your database table definition they give the Active Record
58
- instance additional features.
59
-
60
- NOTE: While these column names are optional they are in fact reserved by ActiveRecord. Steer clear of reserved keywords unless you want the extra functionality. For example, "type" is a reserved keyword
61
- used to designate a table using Single Table Inheritance. If you are not using STI, try an analogous
62
- keyword like "context", that may still accurately describe the data you are modeling.
63
-
64
- [grid="all"]
65
- `------------------------`------------------------------------------------------------------------------
66
- Attribute Purpose
67
- ------------------------------------------------------------------------------------------------------
68
- created_at / created_on Rails stores the current date & time to this field when creating the record.
69
- updated_at / updated_on Rails stores the current date & time to this field when updating the record.
70
- lock_version Adds optimistic locking to a model link:http://api.rubyonrails.com/classes/ActiveRecord/Locking.html[more about optimistic locking].
71
- type Specifies that the model uses Single Table Inheritance link:http://api.rubyonrails.com/classes/ActiveRecord/Base.html[more about STI].
72
- id All models require an id. the default is name is "id" but can be changed using the "set_primary_key" or "primary_key" methods.
73
- _table_name_\_count Can be used to caches the number of belonging objects on the associated class.
74
- ------------------------------------------------------------------------------------------------------
75
-
76
- By default rails assumes all tables will use “id” as their primary key to identify each record. Though fortunately you won’t have explicitly declare this, Rails will automatically create that field unless you tell it not to.
77
-
78
- For example suppose you created a database table called cars:
79
-
80
- [source, sql]
81
- -------------------------------------------------------
82
- mysql> CREATE TABLE cars (
83
- id INT,
84
- color VARCHAR(100),
85
- doors INT,
86
- horses INT,
87
- model VARCHAR(100)
88
- );
89
- -------------------------------------------------------
90
-
91
- Now you created a class named Car, which is to represent an instance of a record from your table.
92
-
93
- [source, ruby]
94
- -------------------------------------------------------
95
- class Car
96
- end
97
- -------------------------------------------------------
98
-
99
- As you might expect without defining the explicit mappings between your class and the table it is impossible for Rails or any other program to correctly map those relationships.
100
-
101
- [source, ruby]
102
- -------------------------------------------------------
103
- >> c = Car.new
104
- => #<Class:0x11e1e90>
105
- >> c.doors
106
- NoMethodError: undefined method `doors' for #<Class:0x11e1e90>
107
- from (irb):2
108
- -------------------------------------------------------
109
-
110
- Now you could define a door methods to write and read data to and from the database. In a nutshell this is what ActiveRecord does. According to the Rails API:
111
- “Active Record objects don‘t specify their attributes directly, but rather infer them from the table definition with which they‘re linked. Adding, removing, and changing attributes and their type is done directly in the database. Any change is instantly reflected in the Active Record objects. The mapping that binds a given Active Record class to a certain database table will happen automatically in most common cases, but can be overwritten for the uncommon ones.”
112
- Lets try our Car class again, this time inheriting from ActiveRecord.
113
-
114
- [source, ruby]
115
- -------------------------------------------------------
116
- class Car < ActiveRecord::Base
117
- end
118
- -------------------------------------------------------
119
-
120
- Now if we try to access an attribute of the table ActiveRecord automatically handles the mappings for us, as you can see in the following example.
121
-
122
- [source, ruby]
123
- -------------------------------------------------------
124
- >> c = Car.new
125
- => #<Car id: nil, doors: nil, color: nil, horses: nil, model: nil>
126
- >> c.doors
127
- => nil
128
- -------------------------------------------------------
129
-
130
- Rails further extends this model by giving each ActiveRecord a way of describing the variety of ways records are associated with one another. We will touch on some of these associations later in the guide but I encourage readers who are interested to read the guide to ActiveRecord associations for an in-depth explanation of the variety of ways rails can model associations.
131
- - Associations between objects controlled by meta-programming macros.
132
-
133
- == Philosophical Approaches & Common Conventions
134
- Rails has a reputation of being a zero-config framework which means that it aims to get you off the ground with as little pre-flight checking as possible. This speed benefit is achieved by following “Convention over Configuration”, which is to say that if you agree to live with the defaults then you benefit from a the inherent speed-boost. As Courtneay Gasking put it to me once “You don’t want to off-road on Rails”. ActiveRecord is no different, while it’s possible to override or subvert any of the conventions of AR, unless you have a good reason for doing so you will probably be happy with the defaults. The following is a list of the common conventions of ActiveRecord
135
-
136
- == ActiveRecord Magic
137
- - timestamps
138
- - updates
139
-
140
- == How ActiveRecord Maps your Database.
141
- - sensible defaults
142
- - overriding conventions
143
-
144
- == Growing Your Database Relationships Naturally
145
-
146
- == Attributes
147
- - attribute accessor method. How to override them?
148
- - attribute?
149
- - dirty records
150
- -
151
- == ActiveRecord handling the CRUD of your Rails application - Understanding the life-cycle of an ActiveRecord
152
-
153
- == Validations & Callbacks
154
- - Validations
155
- * create!
156
- * validates_acceptance_of
157
- * validates_associated
158
- * validates_confirmation_of
159
- * validates_each
160
- * validates_exclusion_of
161
- * validates_format_of
162
- * validates_inclusion_of
163
- * validates_length_of
164
- * validates_numericality_of
165
- * validates_presence_of
166
- * validates_size_of
167
- * validates_uniqueness_of
168
- - Callback
169
- * (-) save
170
- * (-) valid
171
- * (1) before_validation
172
- * (2) before_validation_on_create
173
- * (-) validate
174
- * (-) validate_on_create
175
- * (3) after_validation
176
- * (4) after_validation_on_create
177
- * (5) before_save
178
- * (6) before_create
179
- * (-) create
180
- * (7) after_create
181
- * (8) after_save