2017-08-13 09:14:22 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-06 13:28:46 -04:00
|
|
|
require "net/http"
|
2007-10-14 20:10:39 -04:00
|
|
|
|
2017-05-15 10:17:28 -04:00
|
|
|
$:.unshift __dir__
|
2010-11-16 18:42:39 -05:00
|
|
|
require "tasks/release"
|
2016-08-06 13:28:46 -04:00
|
|
|
require "railties/lib/rails/api/task"
|
2010-11-16 18:42:39 -05:00
|
|
|
|
|
|
|
desc "Build gem files for all projects"
|
2016-08-06 13:40:54 -04:00
|
|
|
task build: "all:build"
|
2010-11-16 18:42:39 -05:00
|
|
|
|
2017-07-22 11:49:40 -04:00
|
|
|
desc "Build, install and verify the gem files in a generated Rails app."
|
|
|
|
task verify: "all:verify"
|
|
|
|
|
2015-12-18 11:56:26 -05:00
|
|
|
desc "Prepare the release"
|
2016-08-06 13:40:54 -04:00
|
|
|
task prep_release: "all:prep_release"
|
2015-12-18 11:56:26 -05:00
|
|
|
|
2013-06-21 04:57:00 -04:00
|
|
|
desc "Release all gems to rubygems and create a tag"
|
2016-08-06 13:40:54 -04:00
|
|
|
task release: "all:release"
|
2010-11-16 18:42:39 -05:00
|
|
|
|
2016-08-06 13:28:46 -04:00
|
|
|
desc "Run all tests by default"
|
2016-08-06 13:40:54 -04: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 = []
|
2015-12-17 10:12:03 -05:00
|
|
|
FRAMEWORKS.each do |project|
|
2016-03-20 20:00:46 -04:00
|
|
|
system(%(cd #{project} && #{$0} #{task_name} --trace)) || errors << project
|
|
|
|
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
|
2015-12-17 10:12:03 -05:00
|
|
|
(FRAMEWORKS - %w(activerecord)).each do |project|
|
2016-03-20 20:00:46 -04:00
|
|
|
system %(cd #{project} && #{$0} test:isolated --trace)
|
2009-12-28 15:28:37 -05:00
|
|
|
end
|
2016-03-20 20:00:46 -04:00
|
|
|
system %(cd activerecord && #{$0} sqlite3:isolated_test --trace)
|
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."
|
2016-08-06 13:40:54 -04:00
|
|
|
task install: "all:install"
|
2009-08-27 06:00:14 -04:00
|
|
|
|
2008-06-18 23:49:31 -04:00
|
|
|
desc "Generate documentation for the Rails framework"
|
2016-08-06 13:28:46 -04:00
|
|
|
if ENV["EDGE"]
|
|
|
|
Rails::API::EdgeTask.new("rdoc")
|
2013-07-06 16:40:02 -04:00
|
|
|
else
|
2016-08-06 13:28:46 -04:00
|
|
|
Rails::API::StableTask.new("rdoc")
|
2013-07-06 16:40:02 -04:00
|
|
|
end
|
2008-06-18 23:49:31 -04:00
|
|
|
|
2016-08-06 13:28:46 -04:00
|
|
|
desc "Bump all versions to match RAILS_VERSION"
|
2016-08-06 13:40:54 -04:00
|
|
|
task update_versions: "all:update_versions"
|
2010-11-16 08:07:55 -05:00
|
|
|
|
2013-05-05 08:26:24 -04:00
|
|
|
# We have a webhook configured in GitHub that gets invoked after pushes.
|
2010-11-16 08:07:55 -05:00
|
|
|
# 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.
|
2016-08-06 13:28:46 -04:00
|
|
|
desc "Publishes docs, run this AFTER a new stable tag has been pushed"
|
2010-11-16 08:07:55 -05:00
|
|
|
task :publish_docs do
|
2016-08-06 13:28:46 -04:00
|
|
|
Net::HTTP.new("api.rubyonrails.org", 8080).start do |http|
|
|
|
|
request = Net::HTTP::Post.new("/rails-master-hook")
|
2010-11-16 08:07:55 -05:00
|
|
|
response = http.request(request)
|
|
|
|
puts response.body
|
|
|
|
end
|
|
|
|
end
|