aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-08-04 06:47:10 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-08-04 06:47:10 -0700
commit7f7e16a837448bf8eb70c6f1664954ed6f9b75ca (patch)
tree0bcc23153194c6a5d4e2c13b65524d8af5915381
parentb61666ccf1fdda7eed68fa3febe20c49592fef8e (diff)
parent1c17c01626be72b7892b39431b92463b8a7b88c3 (diff)
downloadrails-7f7e16a837448bf8eb70c6f1664954ed6f9b75ca.tar.gz
rails-7f7e16a837448bf8eb70c6f1664954ed6f9b75ca.tar.bz2
rails-7f7e16a837448bf8eb70c6f1664954ed6f9b75ca.zip
Merge pull request #11749 from Alamoz/getting_started_guide
Added to 'Security' section in 'Getting Started with Rails' guide, including reference to 'Ruby on Rails Security Guide'.
-rw-r--r--guides/source/getting_started.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 20d7eb3381..12eb88f018 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -1616,6 +1616,8 @@ end
Security
--------
+### Basic Authentication
+
If you were to publish your blog online, anybody would be able to add, edit and
delete posts or delete comments.
@@ -1663,6 +1665,19 @@ Authentication challenge
![Basic HTTP Authentication Challenge](images/getting_started/challenge.png)
+Other authentication methods are available for Rails applications. Two popular
+authentication add-ons for Rails are the [Devise](https://github.com/plataformatec/devise)
+rails engine and the [Authlogic](https://github.com/binarylogic/authlogic) gem,
+along with a number of others.
+
+
+### Other Security Considerations
+
+Security, especially in web applications, is a broad and detailed area. Security
+in your Rails application is covered in more depth in
+The [Ruby on Rails Security Guide](security.html)
+
+
What's Next?
------------