diff options
author | Xavier Noria <fxn@hashref.com> | 2013-03-30 00:05:30 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2013-03-30 00:10:52 +0100 |
commit | 2595611dc38d5d51df45325d818074d1da23c96f (patch) | |
tree | ba44b9bddd055f4a473367d14941c19712796ab5 /guides/code/getting_started/Gemfile | |
parent | 84c0ac3b56e1e3d8dd6401e5cf49a4019acc1b32 (diff) | |
download | rails-2595611dc38d5d51df45325d818074d1da23c96f.tar.gz rails-2595611dc38d5d51df45325d818074d1da23c96f.tar.bz2 rails-2595611dc38d5d51df45325d818074d1da23c96f.zip |
rdoc is no longer a gem dependency, sdoc becomes a runtime dependency
Diffstat (limited to 'guides/code/getting_started/Gemfile')
-rw-r--r-- | guides/code/getting_started/Gemfile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/guides/code/getting_started/Gemfile b/guides/code/getting_started/Gemfile index f5b7b11d3a..5b574cfc1d 100644 --- a/guides/code/getting_started/Gemfile +++ b/guides/code/getting_started/Gemfile @@ -21,6 +21,11 @@ gem 'jquery-rails' # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks gem 'turbolinks' +group :doc do + # bundle exec rake doc:rails generates the API under doc/api. + gem 'sdoc' +end + # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 1.2' |