rails--rails/Rakefile

180 lines
6.0 KiB
Ruby
Raw Normal View History

gem 'rdoc', '>= 2.5.9'
require 'rdoc'
require 'rake'
2010-07-23 19:11:29 +00:00
require 'rdoc/task'
require 'rake/gempackagetask'
# RDoc skips some files in the Rails tree due to its binary? predicate. This is a quick
# hack for edge docs, until we decide which is the correct way to address this issue.
# If not fixed in RDoc itself, via an option or something, we should probably move this
# to railties and use it also in doc:rails.
def hijack_rdoc!
require "rdoc/parser"
class << RDoc::Parser
def binary?(file)
s = File.read(file, 1024) or return false
if s[0, 2] == Marshal.dump('')[0, 2] then
true
elsif file =~ /\.erb\.rb$/ then # ORIGINAL is file =~ /erb\.rb$/
false
elsif s.index("\x00") then # ORIGINAL is s.scan(/<%|%>/).length >= 4 || s.index("\x00")
true
elsif 0.respond_to? :fdiv then
s.count("^ -~\t\r\n").fdiv(s.size) > 0.3
else # HACK 1.8.6
(s.count("^ -~\t\r\n").to_f / s.size) > 0.3
end
end
end
end
PROJECTS = %w(activesupport activemodel actionpack actionmailer activeresource activerecord railties)
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
spec = eval(File.read('rails.gemspec'))
Rake::GemPackageTask.new(spec) do |pkg|
pkg.gem_spec = spec
end
2010-02-05 02:28:45 +00:00
desc "Release all gems to gemcutter. Package rails, package & push components, then push rails"
task :release => :release_projects do
require 'rake/gemcutter'
Rake::Gemcutter::Tasks.new(spec).define
Rake::Task['gem:push'].invoke
end
2010-02-05 02:28:45 +00:00
desc "Release all components to gemcutter."
task :release_projects => :package do
2010-02-05 02:28:45 +00:00
errors = []
PROJECTS.each do |project|
system(%(cd #{project} && #{$0} release)) || errors << project
2010-02-05 02:28:45 +00:00
end
fail("Errors in #{errors.join(', ')}") unless errors.empty?
end
2010-02-21 13:18:40 +00:00
desc "Install gems for all projects."
task :install => :gem do
version = File.read("RAILS_VERSION").strip
(PROJECTS - ["railties"]).each do |project|
puts "INSTALLING #{project}"
system("gem install #{project}/pkg/#{project}-#{version}.gem --no-ri --no-rdoc")
end
system("gem install railties/pkg/railties-#{version}.gem --no-ri --no-rdoc")
system("gem install pkg/rails-#{version}.gem --no-ri --no-rdoc")
end
2008-06-19 03:49:31 +00:00
desc "Generate documentation for the Rails framework"
2010-07-23 19:11:29 +00:00
RDoc::Task.new do |rdoc|
hijack_rdoc!
2008-06-22 17:38:25 +00:00
rdoc.rdoc_dir = 'doc/rdoc'
rdoc.title = "Ruby on Rails Documentation"
2008-06-19 03:49:31 +00:00
2010-07-23 19:11:29 +00:00
rdoc.options << '-f' << 'horo'
rdoc.options << '-c' << 'utf-8'
rdoc.options << '-m' << 'README.rdoc'
rdoc.rdoc_files.include('README.rdoc')
2008-06-19 03:49:31 +00:00
rdoc.rdoc_files.include('railties/CHANGELOG')
rdoc.rdoc_files.include('railties/MIT-LICENSE')
2010-07-21 10:51:14 +00:00
rdoc.rdoc_files.include('railties/README.rdoc')
rdoc.rdoc_files.include('railties/lib/**/*.rb')
rdoc.rdoc_files.exclude('railties/lib/rails/generators/**/templates/*')
2008-06-19 03:49:31 +00:00
2010-07-21 10:51:14 +00:00
rdoc.rdoc_files.include('activerecord/README.rdoc')
2008-06-19 03:49:31 +00:00
rdoc.rdoc_files.include('activerecord/CHANGELOG')
rdoc.rdoc_files.include('activerecord/lib/active_record/**/*.rb')
rdoc.rdoc_files.exclude('activerecord/lib/active_record/vendor/*')
2010-07-21 10:51:14 +00:00
rdoc.rdoc_files.include('activeresource/README.rdoc')
2008-06-19 03:49:31 +00:00
rdoc.rdoc_files.include('activeresource/CHANGELOG')
rdoc.rdoc_files.include('activeresource/lib/active_resource.rb')
rdoc.rdoc_files.include('activeresource/lib/active_resource/*')
2010-07-21 10:51:14 +00:00
rdoc.rdoc_files.include('actionpack/README.rdoc')
2008-06-19 03:49:31 +00:00
rdoc.rdoc_files.include('actionpack/CHANGELOG')
2010-08-06 23:42:09 +00:00
rdoc.rdoc_files.include('actionpack/lib/abstract_controller/**/*.rb')
2008-06-19 03:49:31 +00:00
rdoc.rdoc_files.include('actionpack/lib/action_controller/**/*.rb')
rdoc.rdoc_files.include('actionpack/lib/action_dispatch/**/*.rb')
2008-06-19 03:49:31 +00:00
rdoc.rdoc_files.include('actionpack/lib/action_view/**/*.rb')
rdoc.rdoc_files.exclude('actionpack/lib/action_controller/vendor/*')
2010-07-21 10:51:14 +00:00
rdoc.rdoc_files.include('actionmailer/README.rdoc')
2008-06-19 03:49:31 +00:00
rdoc.rdoc_files.include('actionmailer/CHANGELOG')
rdoc.rdoc_files.include('actionmailer/lib/action_mailer/base.rb')
rdoc.rdoc_files.exclude('actionmailer/lib/action_mailer/vendor/*')
2010-07-21 10:51:14 +00:00
rdoc.rdoc_files.include('activesupport/README.rdoc')
2008-06-19 03:49:31 +00:00
rdoc.rdoc_files.include('activesupport/CHANGELOG')
rdoc.rdoc_files.include('activesupport/lib/active_support/**/*.rb')
rdoc.rdoc_files.exclude('activesupport/lib/active_support/vendor/*')
2010-07-21 10:51:14 +00:00
rdoc.rdoc_files.include('activemodel/README.rdoc')
rdoc.rdoc_files.include('activemodel/CHANGELOG')
rdoc.rdoc_files.include('activemodel/lib/active_model/**/*.rb')
2008-06-19 03:49:31 +00:00
end
# Enhance rdoc task to copy referenced images also
task :rdoc do
2008-06-22 17:38:25 +00:00
FileUtils.mkdir_p "doc/rdoc/files/examples/"
FileUtils.copy "activerecord/examples/associations.png", "doc/rdoc/files/examples/associations.png"
2008-06-19 03:49:31 +00:00
end
desc "Publish API docs for Rails as a whole and for each component"
task :pdoc => :rdoc do
require 'rake/contrib/sshpublisher'
Rake::SshDirPublisher.new("rails@api.rubyonrails.org", "public_html/api", "doc/rdoc").upload
2008-06-19 03:49:31 +00:00
end
task :update_versions do
require File.dirname(__FILE__) + "/version"
File.open("RAILS_VERSION", "w") do |f|
f.write Rails::VERSION::STRING + "\n"
end
constants = {
"activesupport" => "ActiveSupport",
"activemodel" => "ActiveModel",
"actionpack" => "ActionPack",
"actionmailer" => "ActionMailer",
"activeresource" => "ActiveResource",
"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