rails--rails/Rakefile

68 lines
1.9 KiB
Ruby
Raw Normal View History

2011-08-27 10:55:01 +00:00
require 'sdoc'
require 'net/http'
$:.unshift File.expand_path('..', __FILE__)
require "tasks/release"
require 'railties/lib/rails/api/task'
desc "Build gem files for all projects"
task :build => "all:build"
2013-06-21 08:57:00 +00:00
desc "Release all gems to rubygems and create a tag"
2010-11-17 00:30:53 +00:00
task :release => "all:release"
2014-08-12 09:29:21 +00:00
PROJECTS = %w(activesupport activemodel actionpack actionview actionmailer activerecord railties activejob)
desc 'Run all tests by default'
task :default => %w(test test:isolated)
%w(test test:isolated package gem).each do |task_name|
desc "Run #{task_name} task for all projects"
task task_name do
errors = []
PROJECTS.each do |project|
system(%(cd #{project} && #{$0} #{task_name})) || errors << project
end
fail("Errors in #{errors.join(', ')}") unless errors.empty?
end
end
2008-06-19 03:49:31 +00:00
desc "Smoke-test all projects"
task :smoke do
(PROJECTS - %w(activerecord)).each do |project|
system %(cd #{project} && #{$0} test:isolated)
end
system %(cd activerecord && #{$0} sqlite3:isolated_test)
end
2010-02-21 13:18:40 +00:00
desc "Install gems for all projects."
2013-10-23 21:41:48 +00:00
task :install => "all:install"
2008-06-19 03:49:31 +00:00
desc "Generate documentation for the Rails framework"
if ENV['EDGE']
Rails::API::EdgeTask.new('rdoc')
else
Rails::API::StableTask.new('rdoc')
end
2008-06-19 03:49:31 +00:00
desc 'Bump all versions to match RAILS_VERSION'
2014-03-25 18:35:06 +00:00
task :update_versions => "all:update_versions"
2013-05-05 12:26:24 +00: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.
desc 'Publishes docs, run this AFTER a new stable tag has been pushed'
task :publish_docs do
Net::HTTP.new('api.rubyonrails.org', 8080).start do |http|
request = Net::HTTP::Post.new('/rails-master-hook')
response = http.request(request)
puts response.body
end
end