1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

rdoc is no longer a gem dependency, sdoc becomes a runtime dependency

This commit is contained in:
Xavier Noria 2013-03-30 00:05:30 +01:00
parent 84c0ac3b56
commit 2595611dc3
3 changed files with 10 additions and 1 deletions

View file

@ -21,6 +21,11 @@ gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem '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 # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2' gem 'jbuilder', '~> 1.2'

View file

@ -9,6 +9,11 @@ source 'https://rubygems.org'
<%= assets_gemfile_entry %> <%= assets_gemfile_entry %>
<%= javascript_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 # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.0.1' gem 'jbuilder', '~> 1.0.1'

View file

@ -28,5 +28,4 @@ Gem::Specification.new do |s|
s.add_dependency 'rake', '>= 0.8.7' s.add_dependency 'rake', '>= 0.8.7'
s.add_dependency 'thor', '>= 0.17.0', '< 2.0' s.add_dependency 'thor', '>= 0.17.0', '< 2.0'
s.add_dependency 'rdoc', '~> 3.4'
end end