2011-05-25 12:37:34 -04:00
|
|
|
require 'rdoc/task'
|
2011-08-27 06:55:01 -04:00
|
|
|
require 'sdoc'
|
2010-11-16 08:07:55 -05:00
|
|
|
require 'net/http'
|
2007-10-14 20:10:39 -04:00
|
|
|
|
2010-11-16 18:42:39 -05:00
|
|
|
$:.unshift File.expand_path('..', __FILE__)
|
|
|
|
require "tasks/release"
|
|
|
|
|
|
|
|
desc "Build gem files for all projects"
|
|
|
|
task :build => "all:build"
|
|
|
|
|
|
|
|
desc "Release all gems to gemcutter and create a tag"
|
2010-11-16 19:30:53 -05:00
|
|
|
task :release => "all:release"
|
2010-11-16 18:42:39 -05:00
|
|
|
|
2011-05-15 15:34:36 -04:00
|
|
|
PROJECTS = %w(activesupport activemodel actionpack actionmailer activerecord railties)
|
2007-10-14 20:10:39 -04:00
|
|
|
|
|
|
|
desc 'Run all tests by default'
|
2009-11-10 19:50:15 -05:00
|
|
|
task :default => %w(test test:isolated)
|
2007-10-14 20:10:39 -04:00
|
|
|
|
2010-07-23 18:35:22 -04:00
|
|
|
%w(test test:isolated package gem).each do |task_name|
|
2007-10-14 20:10:39 -04:00
|
|
|
desc "Run #{task_name} task for all projects"
|
|
|
|
task task_name do
|
2009-05-18 05:13:51 -04:00
|
|
|
errors = []
|
2007-10-14 20:10:39 -04:00
|
|
|
PROJECTS.each do |project|
|
2010-03-01 21:55:43 -05:00
|
|
|
system(%(cd #{project} && #{$0} #{task_name})) || errors << project
|
2007-10-14 20:10:39 -04:00
|
|
|
end
|
2009-05-18 05:13:51 -04:00
|
|
|
fail("Errors in #{errors.join(', ')}") unless errors.empty?
|
2007-10-14 20:10:39 -04:00
|
|
|
end
|
|
|
|
end
|
2008-06-18 23:49:31 -04:00
|
|
|
|
2009-12-28 15:28:37 -05:00
|
|
|
desc "Smoke-test all projects"
|
|
|
|
task :smoke do
|
|
|
|
(PROJECTS - %w(activerecord)).each do |project|
|
2010-03-01 21:55:43 -05:00
|
|
|
system %(cd #{project} && #{$0} test:isolated)
|
2009-12-28 15:28:37 -05:00
|
|
|
end
|
2010-03-01 21:55:43 -05:00
|
|
|
system %(cd activerecord && #{$0} sqlite3:isolated_test)
|
2009-12-28 15:28:37 -05:00
|
|
|
end
|
2009-11-30 19:46:09 -05:00
|
|
|
|
2010-02-21 08:18:40 -05:00
|
|
|
desc "Install gems for all projects."
|
2009-08-27 06:00:14 -04:00
|
|
|
task :install => :gem do
|
2010-03-27 07:10:21 -04:00
|
|
|
version = File.read("RAILS_VERSION").strip
|
2009-08-27 06:00:14 -04:00
|
|
|
(PROJECTS - ["railties"]).each do |project|
|
2009-11-30 19:46:09 -05:00
|
|
|
puts "INSTALLING #{project}"
|
2010-03-27 07:10:21 -04:00
|
|
|
system("gem install #{project}/pkg/#{project}-#{version}.gem --no-ri --no-rdoc")
|
2009-08-27 06:00:14 -04:00
|
|
|
end
|
2010-03-27 07:10:21 -04:00
|
|
|
system("gem install railties/pkg/railties-#{version}.gem --no-ri --no-rdoc")
|
|
|
|
system("gem install pkg/rails-#{version}.gem --no-ri --no-rdoc")
|
2009-08-27 06:00:14 -04:00
|
|
|
end
|
|
|
|
|
2008-06-18 23:49:31 -04:00
|
|
|
desc "Generate documentation for the Rails framework"
|
2010-07-23 15:11:29 -04:00
|
|
|
RDoc::Task.new do |rdoc|
|
2011-05-01 07:15:15 -04:00
|
|
|
RDOC_MAIN = 'RDOC_MAIN.rdoc'
|
|
|
|
|
2011-06-12 09:03:28 -04:00
|
|
|
# This is a hack.
|
|
|
|
#
|
|
|
|
# Backslashes are needed to prevent RDoc from autolinking "Rails" to the
|
|
|
|
# documentation of the Rails module. On the other hand, as of this
|
|
|
|
# writing README.rdoc is displayed in the front page of the project in
|
|
|
|
# GitHub, where backslashes are shown and look weird.
|
|
|
|
#
|
|
|
|
# The temporary solution is to have a README.rdoc without backslashes for
|
|
|
|
# GitHub, and gsub it to generate the main page of the API.
|
|
|
|
#
|
2011-06-19 05:39:52 -04:00
|
|
|
# Also, relative links in GitHub have to point to blobs, whereas in the API
|
|
|
|
# they need to point to files.
|
|
|
|
#
|
2011-06-12 09:03:28 -04:00
|
|
|
# The idea for the future is to have totally different files, since the
|
|
|
|
# API is no longer a generic entry point to Rails and deserves a
|
|
|
|
# dedicated main page specifically thought as an API entry point.
|
2011-05-01 07:15:15 -04:00
|
|
|
rdoc.before_running_rdoc do
|
|
|
|
rdoc_main = File.read('README.rdoc')
|
2011-06-12 09:03:28 -04:00
|
|
|
|
|
|
|
# The ^(?=\S) assertion prevents code blocks from being processed,
|
|
|
|
# since no autolinking happens there and RDoc displays the backslash
|
|
|
|
# otherwise.
|
|
|
|
rdoc_main.gsub!(/^(?=\S).*?\b(?=Rails)\b/) { "#$&\\" }
|
2011-08-13 12:44:18 -04:00
|
|
|
rdoc_main.gsub!(%r{link:/rails/rails/blob/master/(\w+)/README\.rdoc}, "link:files/\\1/README_rdoc.html")
|
2011-06-12 09:03:28 -04:00
|
|
|
|
2012-10-26 14:44:21 -04:00
|
|
|
# Remove Travis and Gemnasium status images from API pages. Only the GitHub
|
|
|
|
# README page gets these images. Travis's HTTPS build image is used to
|
|
|
|
# avoid GitHub caching: http://about.travis-ci.org/docs/user/status-images
|
|
|
|
rdoc_main.gsub!(/^== Code Status(\n(?!==).*)*/, '')
|
2011-08-22 07:37:23 -04:00
|
|
|
|
2011-05-01 07:15:15 -04:00
|
|
|
File.open(RDOC_MAIN, 'w') do |f|
|
|
|
|
f.write(rdoc_main)
|
|
|
|
end
|
|
|
|
|
|
|
|
rdoc.rdoc_files.include(RDOC_MAIN)
|
|
|
|
end
|
|
|
|
|
2008-06-22 13:38:25 -04:00
|
|
|
rdoc.rdoc_dir = 'doc/rdoc'
|
|
|
|
rdoc.title = "Ruby on Rails Documentation"
|
2008-06-18 23:49:31 -04:00
|
|
|
|
2011-08-27 06:55:01 -04:00
|
|
|
rdoc.options << '-f' << 'sdoc'
|
|
|
|
rdoc.options << '-T' << 'rails'
|
2012-01-03 10:54:41 -05:00
|
|
|
rdoc.options << '-e' << 'UTF-8'
|
2011-08-29 18:47:56 -04:00
|
|
|
rdoc.options << '-g' # SDoc flag, link methods to GitHub
|
2011-05-01 07:15:15 -04:00
|
|
|
rdoc.options << '-m' << RDOC_MAIN
|
2008-06-18 23:49:31 -04:00
|
|
|
|
2011-11-08 01:08:33 -05:00
|
|
|
rdoc.rdoc_files.include('railties/CHANGELOG.md')
|
2008-06-18 23:49:31 -04:00
|
|
|
rdoc.rdoc_files.include('railties/MIT-LICENSE')
|
2010-07-21 06:51:14 -04:00
|
|
|
rdoc.rdoc_files.include('railties/README.rdoc')
|
2010-03-29 00:10:42 -04:00
|
|
|
rdoc.rdoc_files.include('railties/lib/**/*.rb')
|
2011-06-12 06:09:08 -04:00
|
|
|
rdoc.rdoc_files.exclude('railties/lib/rails/generators/**/templates/**/*.rb')
|
2008-06-18 23:49:31 -04:00
|
|
|
|
2010-07-21 06:51:14 -04:00
|
|
|
rdoc.rdoc_files.include('activerecord/README.rdoc')
|
2011-11-08 01:08:33 -05:00
|
|
|
rdoc.rdoc_files.include('activerecord/CHANGELOG.md')
|
2008-06-18 23:49:31 -04:00
|
|
|
rdoc.rdoc_files.include('activerecord/lib/active_record/**/*.rb')
|
|
|
|
rdoc.rdoc_files.exclude('activerecord/lib/active_record/vendor/*')
|
|
|
|
|
2010-07-21 06:51:14 -04:00
|
|
|
rdoc.rdoc_files.include('actionpack/README.rdoc')
|
2011-11-08 01:08:33 -05:00
|
|
|
rdoc.rdoc_files.include('actionpack/CHANGELOG.md')
|
2010-08-06 19:42:09 -04:00
|
|
|
rdoc.rdoc_files.include('actionpack/lib/abstract_controller/**/*.rb')
|
2008-06-18 23:49:31 -04:00
|
|
|
rdoc.rdoc_files.include('actionpack/lib/action_controller/**/*.rb')
|
2010-03-28 19:10:18 -04:00
|
|
|
rdoc.rdoc_files.include('actionpack/lib/action_dispatch/**/*.rb')
|
2008-06-18 23:49:31 -04:00
|
|
|
rdoc.rdoc_files.include('actionpack/lib/action_view/**/*.rb')
|
|
|
|
rdoc.rdoc_files.exclude('actionpack/lib/action_controller/vendor/*')
|
|
|
|
|
2010-07-21 06:51:14 -04:00
|
|
|
rdoc.rdoc_files.include('actionmailer/README.rdoc')
|
2011-11-08 01:08:33 -05:00
|
|
|
rdoc.rdoc_files.include('actionmailer/CHANGELOG.md')
|
2012-09-17 16:25:33 -04:00
|
|
|
rdoc.rdoc_files.include('actionmailer/lib/action_mailer/**/*.rb')
|
2008-06-18 23:49:31 -04:00
|
|
|
rdoc.rdoc_files.exclude('actionmailer/lib/action_mailer/vendor/*')
|
|
|
|
|
2010-07-21 06:51:14 -04:00
|
|
|
rdoc.rdoc_files.include('activesupport/README.rdoc')
|
2011-11-08 01:08:33 -05:00
|
|
|
rdoc.rdoc_files.include('activesupport/CHANGELOG.md')
|
2008-06-18 23:49:31 -04:00
|
|
|
rdoc.rdoc_files.include('activesupport/lib/active_support/**/*.rb')
|
|
|
|
rdoc.rdoc_files.exclude('activesupport/lib/active_support/vendor/*')
|
2010-02-10 17:26:47 -05:00
|
|
|
|
2010-07-21 06:51:14 -04:00
|
|
|
rdoc.rdoc_files.include('activemodel/README.rdoc')
|
2011-11-08 01:08:33 -05:00
|
|
|
rdoc.rdoc_files.include('activemodel/CHANGELOG.md')
|
2010-02-10 17:26:47 -05:00
|
|
|
rdoc.rdoc_files.include('activemodel/lib/active_model/**/*.rb')
|
2008-06-18 23:49:31 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Enhance rdoc task to copy referenced images also
|
|
|
|
task :rdoc do
|
2008-06-22 13:38:25 -04:00
|
|
|
FileUtils.mkdir_p "doc/rdoc/files/examples/"
|
|
|
|
FileUtils.copy "activerecord/examples/associations.png", "doc/rdoc/files/examples/associations.png"
|
2008-06-18 23:49:31 -04:00
|
|
|
end
|
|
|
|
|
2010-08-30 01:06:48 -04:00
|
|
|
desc 'Bump all versions to match version.rb'
|
2010-03-01 23:02:55 -05:00
|
|
|
task :update_versions do
|
2010-03-04 22:41:39 -05:00
|
|
|
require File.dirname(__FILE__) + "/version"
|
|
|
|
|
|
|
|
File.open("RAILS_VERSION", "w") do |f|
|
|
|
|
f.write Rails::VERSION::STRING + "\n"
|
|
|
|
end
|
|
|
|
|
2010-03-01 23:02:55 -05:00
|
|
|
constants = {
|
|
|
|
"activesupport" => "ActiveSupport",
|
|
|
|
"activemodel" => "ActiveModel",
|
|
|
|
"actionpack" => "ActionPack",
|
|
|
|
"actionmailer" => "ActionMailer",
|
|
|
|
"activerecord" => "ActiveRecord",
|
|
|
|
"railties" => "Rails"
|
|
|
|
}
|
|
|
|
|
|
|
|
version_file = File.read("version.rb")
|
|
|
|
|
|
|
|
PROJECTS.each do |project|
|
|
|
|
Dir["#{project}/lib/*/version.rb"].each do |file|
|
|
|
|
File.open(file, "w") do |f|
|
|
|
|
f.write version_file.gsub(/Rails/, constants[project])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2010-11-16 08:07:55 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# We have a webhook configured in Github that gets invoked after pushes.
|
|
|
|
# This hook triggers the following tasks:
|
|
|
|
#
|
|
|
|
# * updates the local checkout
|
|
|
|
# * updates Rails Contributors
|
|
|
|
# * generates and publishes edge docs
|
|
|
|
# * if there's a new stable tag, generates and publishes stable docs
|
|
|
|
#
|
|
|
|
# Everything is automated and you do NOT need to run this task normally.
|
|
|
|
#
|
2010-11-17 07:27:44 -05:00
|
|
|
# We publish a new version by tagging, and pushing a tag does not trigger
|
2010-11-16 08:07:55 -05:00
|
|
|
# that webhook. Stable docs would be updated by any subsequent regular
|
|
|
|
# push, but if you want that to happen right away just run this.
|
|
|
|
#
|
|
|
|
desc 'Publishes docs, run this AFTER a new stable tag has been pushed'
|
|
|
|
task :publish_docs do
|
2011-12-08 08:03:42 -05:00
|
|
|
Net::HTTP.new('api.rubyonrails.org', 8080).start do |http|
|
2010-11-16 08:07:55 -05:00
|
|
|
request = Net::HTTP::Post.new('/rails-master-hook')
|
|
|
|
response = http.request(request)
|
|
|
|
puts response.body
|
|
|
|
end
|
|
|
|
end
|