diff options
author | Agis Anastasopoulos <corestudiosinc@gmail.com> | 2012-11-15 18:56:38 +0200 |
---|---|---|
committer | Agis Anastasopoulos <corestudiosinc@gmail.com> | 2012-11-15 18:56:38 +0200 |
commit | 8db41ff7698eed542fb09821de37fc7ea1f2bd5d (patch) | |
tree | 75a271fb9b7d9f4784c029504a29929254a02e78 /guides/source | |
parent | 763c82e62320f404af0eeba2a899a0f241fe67c3 (diff) | |
download | rails-8db41ff7698eed542fb09821de37fc7ea1f2bd5d.tar.gz rails-8db41ff7698eed542fb09821de37fc7ea1f2bd5d.tar.bz2 rails-8db41ff7698eed542fb09821de37fc7ea1f2bd5d.zip |
Add a consideration note
I believe this paragraph should move to the end as it's a little out of the scope of Rails guides.
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/action_view_overview.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md index 967e3da935..bb11eb0dd6 100644 --- a/guides/source/action_view_overview.md +++ b/guides/source/action_view_overview.md @@ -49,6 +49,8 @@ The complete HTML returned to the client is composed of a combination of this ER Using Action View outside of Rails ---------------------------------- +TODO: I believe this is a little out of the scope of rails guides. At least could we move this to the end? *Agis-* + Action View works well with Active Record, but it can also be used with other Ruby tools. We can demonstrate this by creating a small [Rack](http://rack.rubyforge.org/) application that includes Action View functionality. This may be useful, for example, if you'd like access to Action View's helpers in a Rack application. Let's start by ensuring that you have the Action Pack and Rack gems installed: |