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
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'

View File

@ -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'

View File

@ -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