Skip to content

Commit

Permalink
rdoc is no longer a gem dependency, sdoc becomes a runtime dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
fxn committed Mar 29, 2013
1 parent 84c0ac3 commit 2595611
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions guides/code/getting_started/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
5 changes: 5 additions & 0 deletions railties/lib/rails/generators/rails/app/templates/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ source 'https://rubygems.org'
<%= assets_gemfile_entry %>
<%= javascript_gemfile_entry -%>
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.0.1'
Expand Down
1 change: 0 additions & 1 deletion railties/railties.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,4 @@ Gem::Specification.new do |s|

s.add_dependency 'rake', '>= 0.8.7'
s.add_dependency 'thor', '>= 0.17.0', '< 2.0'
s.add_dependency 'rdoc', '~> 3.4'
end

0 comments on commit 2595611

Please sign in to comment.