mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
cd7cc5254b
This patch removes the tasks doc:app, doc:rails, and doc:guides. In our experience applications do not generate APIs using doc:app. Methods may be certainly documented for maintainers, annotated with YARD tags, etc. but that is intended to be read with the source code, not in a separate website. Then, teams also have typically selected topics written down in Markdown files, or in a GitHub wiki... that kind of thing. If a team absolutely needs to generate application documentation for internal purposes, they can still easily write their own task. Regarding doc:rails and doc:guides, we live in 2015. We are used to go to online docs all the time. If you really want access to the API offline RubyGems generates it for every Rails component unless you tell it not to, and you can checkout the Rails source code to read the guides as Markdown, or download them for a Kindle reader. All in all, maintaining this code does not seem to be worthwhile anymore. As a consequence of this, guides (+3 MB uncompressed) won't be distributed with the rails gem anymore. Of course, guides and API are going to be still part of releases, since documentation is maintained alongside code and tests. Also, time permitting, this will allow us to experiment with novel ways to generate documentation in the Rails docs server, since right now we were constrained by being able to generate them in the user's environment.
32 lines
1.1 KiB
Ruby
32 lines
1.1 KiB
Ruby
version = File.read(File.expand_path('../RAILS_VERSION', __FILE__)).strip
|
|
|
|
Gem::Specification.new do |s|
|
|
s.platform = Gem::Platform::RUBY
|
|
s.name = 'rails'
|
|
s.version = version
|
|
s.summary = 'Full-stack web application framework.'
|
|
s.description = 'Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.'
|
|
|
|
s.required_ruby_version = '>= 2.2.0'
|
|
s.required_rubygems_version = '>= 1.8.11'
|
|
|
|
s.license = 'MIT'
|
|
|
|
s.author = 'David Heinemeier Hansson'
|
|
s.email = 'david@loudthinking.com'
|
|
s.homepage = 'http://www.rubyonrails.org'
|
|
|
|
s.files = ['README.md']
|
|
|
|
s.add_dependency 'activesupport', version
|
|
s.add_dependency 'actionpack', version
|
|
s.add_dependency 'actionview', version
|
|
s.add_dependency 'activemodel', version
|
|
s.add_dependency 'activerecord', version
|
|
s.add_dependency 'actionmailer', version
|
|
s.add_dependency 'activejob', version
|
|
s.add_dependency 'railties', version
|
|
|
|
s.add_dependency 'bundler', '>= 1.3.0', '< 2.0'
|
|
s.add_dependency 'sprockets-rails'
|
|
end
|