2004-11-24 01:04:44 +00:00
|
|
|
require 'rubygems'
|
|
|
|
require 'rake'
|
|
|
|
require 'rake/testtask'
|
|
|
|
require 'rake/rdoctask'
|
|
|
|
require 'rake/packagetask'
|
|
|
|
require 'rake/gempackagetask'
|
|
|
|
|
|
|
|
desc "Default Task"
|
2009-09-13 17:42:13 +00:00
|
|
|
task :default => :test
|
2009-09-12 20:22:11 +00:00
|
|
|
|
2004-11-24 01:04:44 +00:00
|
|
|
# Run the unit tests
|
|
|
|
|
2009-05-19 22:06:14 +00:00
|
|
|
desc "Run all unit tests"
|
2009-09-19 18:22:58 +00:00
|
|
|
task :test => [:test_action_pack, :test_active_record_integration]
|
2006-08-22 04:38:03 +00:00
|
|
|
|
2008-09-10 18:03:32 +00:00
|
|
|
Rake::TestTask.new(:test_action_pack) do |t|
|
2009-09-13 21:30:27 +00:00
|
|
|
t.libs << 'test'
|
2008-09-10 18:03:32 +00:00
|
|
|
|
|
|
|
# make sure we include the tests in alphabetical order as on some systems
|
|
|
|
# this will not happen automatically and the tests (as a whole) will error
|
2009-10-04 02:33:06 +00:00
|
|
|
t.test_files = Dir.glob('test/{abstract,controller,dispatch,template}/**/*_test.rb').sort
|
2008-09-10 18:03:32 +00:00
|
|
|
|
2009-09-19 18:26:54 +00:00
|
|
|
# t.warning = true
|
2008-09-10 18:03:32 +00:00
|
|
|
end
|
2009-06-08 20:33:18 +00:00
|
|
|
|
2009-10-04 02:33:06 +00:00
|
|
|
namespace :test do
|
|
|
|
Rake::TestTask.new(:isolated) do |t|
|
|
|
|
t.pattern = 'test/ts_isolated.rb'
|
|
|
|
end
|
2009-05-13 08:06:53 +00:00
|
|
|
end
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2006-02-09 09:17:40 +00:00
|
|
|
desc 'ActiveRecord Integration Tests'
|
|
|
|
Rake::TestTask.new(:test_active_record_integration) do |t|
|
2009-09-13 21:30:27 +00:00
|
|
|
t.libs << 'test'
|
2006-02-09 09:17:40 +00:00
|
|
|
t.test_files = Dir.glob("test/activerecord/*_test.rb")
|
|
|
|
end
|
|
|
|
|
2004-11-24 01:04:44 +00:00
|
|
|
# Genereate the RDoc documentation
|
|
|
|
|
|
|
|
Rake::RDocTask.new { |rdoc|
|
|
|
|
rdoc.rdoc_dir = 'doc'
|
|
|
|
rdoc.title = "Action Pack -- On rails from request to response"
|
2006-03-28 03:19:27 +00:00
|
|
|
rdoc.options << '--line-numbers' << '--inline-source'
|
2007-05-28 22:55:14 +00:00
|
|
|
rdoc.options << '--charset' << 'utf-8'
|
2008-06-22 17:38:25 +00:00
|
|
|
rdoc.template = ENV['template'] ? "#{ENV['template']}.rb" : '../doc/template/horo'
|
2009-10-16 18:56:59 +00:00
|
|
|
if ENV['DOC_FILES']
|
2006-04-27 18:22:20 +00:00
|
|
|
rdoc.rdoc_files.include(ENV['DOC_FILES'].split(/,\s*/))
|
|
|
|
else
|
|
|
|
rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG')
|
2008-06-19 03:09:48 +00:00
|
|
|
rdoc.rdoc_files.include(Dir['lib/**/*.rb'] -
|
2008-06-19 03:16:02 +00:00
|
|
|
Dir['lib/*/vendor/**/*.rb'])
|
|
|
|
rdoc.rdoc_files.exclude('lib/actionpack.rb')
|
2006-04-27 18:22:20 +00:00
|
|
|
end
|
2004-11-24 01:04:44 +00:00
|
|
|
}
|
|
|
|
|
2009-09-25 05:46:04 +00:00
|
|
|
spec = eval(File.read('actionpack.gemspec'))
|
|
|
|
|
2004-11-24 01:04:44 +00:00
|
|
|
Rake::GemPackageTask.new(spec) do |p|
|
|
|
|
p.gem_spec = spec
|
|
|
|
end
|
|
|
|
|
2010-02-05 02:28:45 +00:00
|
|
|
desc "Release to gemcutter"
|
2010-02-05 08:03:03 +00:00
|
|
|
task :release => :package do
|
|
|
|
require 'rake/gemcutter'
|
|
|
|
Rake::Gemcutter::Tasks.new(spec).define
|
|
|
|
Rake::Task['gem:push'].invoke
|
|
|
|
end
|
2010-02-05 02:28:45 +00:00
|
|
|
|
2005-04-13 05:06:40 +00:00
|
|
|
task :lines do
|
|
|
|
lines, codelines, total_lines, total_codelines = 0, 0, 0, 0
|
|
|
|
|
|
|
|
for file_name in FileList["lib/**/*.rb"]
|
|
|
|
next if file_name =~ /vendor/
|
|
|
|
f = File.open(file_name)
|
|
|
|
|
|
|
|
while line = f.gets
|
|
|
|
lines += 1
|
|
|
|
next if line =~ /^\s*$/
|
|
|
|
next if line =~ /^\s*#/
|
|
|
|
codelines += 1
|
|
|
|
end
|
|
|
|
puts "L: #{sprintf("%4d", lines)}, LOC #{sprintf("%4d", codelines)} | #{file_name}"
|
2009-10-16 18:56:59 +00:00
|
|
|
|
2005-04-13 05:06:40 +00:00
|
|
|
total_lines += lines
|
|
|
|
total_codelines += codelines
|
2009-10-16 18:56:59 +00:00
|
|
|
|
2005-04-13 05:06:40 +00:00
|
|
|
lines, codelines = 0, 0
|
|
|
|
end
|
|
|
|
|
|
|
|
puts "Total: Lines #{total_lines}, LOC #{total_codelines}"
|
|
|
|
end
|
|
|
|
|
2005-07-02 06:23:35 +00:00
|
|
|
# Publishing ------------------------------------------------------
|
|
|
|
|
|
|
|
task :update_scriptaculous do
|
2006-03-04 17:12:03 +00:00
|
|
|
for js in %w( controls dragdrop effects )
|
2006-03-06 19:45:02 +00:00
|
|
|
system("svn export --force http://dev.rubyonrails.org/svn/rails/spinoffs/scriptaculous/src/#{js}.js #{File.dirname(__FILE__)}/lib/action_view/helpers/javascripts/#{js}.js")
|
2006-03-04 17:12:03 +00:00
|
|
|
end
|
2005-07-02 06:23:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
desc "Updates actionpack to the latest version of the javascript spinoffs"
|
2006-03-04 17:12:03 +00:00
|
|
|
task :update_js => [ :update_scriptaculous ]
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2005-03-27 13:33:54 +00:00
|
|
|
# Publishing ------------------------------------------------------
|
|
|
|
|
2004-11-24 01:04:44 +00:00
|
|
|
desc "Publish the API documentation"
|
2009-10-16 18:56:59 +00:00
|
|
|
task :pdoc => [:rdoc] do
|
2009-05-12 02:49:11 +00:00
|
|
|
require 'rake/contrib/sshpublisher'
|
2008-06-19 02:56:22 +00:00
|
|
|
Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/ap", "doc").upload
|
2010-03-02 02:55:43 +00:00
|
|
|
end
|