2004-11-23 20:04:44 -05:00
|
|
|
require 'rubygems'
|
|
|
|
require 'rake'
|
|
|
|
require 'rake/testtask'
|
|
|
|
require 'rake/rdoctask'
|
|
|
|
require 'rake/packagetask'
|
|
|
|
require 'rake/gempackagetask'
|
|
|
|
|
|
|
|
desc "Default Task"
|
2009-09-13 13:42:13 -04:00
|
|
|
task :default => :test
|
2009-09-12 16:22:11 -04:00
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
# Run the unit tests
|
|
|
|
|
2009-05-19 18:06:14 -04:00
|
|
|
desc "Run all unit tests"
|
2009-09-19 14:22:58 -04:00
|
|
|
task :test => [:test_action_pack, :test_active_record_integration]
|
2006-08-22 00:38:03 -04:00
|
|
|
|
2008-09-10 14:03:32 -04:00
|
|
|
Rake::TestTask.new(:test_action_pack) do |t|
|
2009-09-13 17:30:27 -04:00
|
|
|
t.libs << 'test'
|
2008-09-10 14:03:32 -04: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-03 22:33:06 -04:00
|
|
|
t.test_files = Dir.glob('test/{abstract,controller,dispatch,template}/**/*_test.rb').sort
|
2008-09-10 14:03:32 -04:00
|
|
|
|
2009-09-19 14:26:54 -04:00
|
|
|
# t.warning = true
|
2008-09-10 14:03:32 -04:00
|
|
|
end
|
2009-06-08 16:33:18 -04:00
|
|
|
|
2009-10-03 22:33:06 -04:00
|
|
|
namespace :test do
|
|
|
|
Rake::TestTask.new(:isolated) do |t|
|
|
|
|
t.pattern = 'test/ts_isolated.rb'
|
|
|
|
end
|
2009-05-13 04:06:53 -04:00
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2006-02-09 04:17:40 -05:00
|
|
|
desc 'ActiveRecord Integration Tests'
|
|
|
|
Rake::TestTask.new(:test_active_record_integration) do |t|
|
2009-09-13 17:30:27 -04:00
|
|
|
t.libs << 'test'
|
2006-02-09 04:17:40 -05:00
|
|
|
t.test_files = Dir.glob("test/activerecord/*_test.rb")
|
|
|
|
end
|
|
|
|
|
2004-11-23 20:04:44 -05: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-27 22:19:27 -05:00
|
|
|
rdoc.options << '--line-numbers' << '--inline-source'
|
2007-05-28 18:55:14 -04:00
|
|
|
rdoc.options << '--charset' << 'utf-8'
|
2008-06-22 13:38:25 -04:00
|
|
|
rdoc.template = ENV['template'] ? "#{ENV['template']}.rb" : '../doc/template/horo'
|
2009-10-16 14:56:59 -04:00
|
|
|
if ENV['DOC_FILES']
|
2006-04-27 14:22:20 -04:00
|
|
|
rdoc.rdoc_files.include(ENV['DOC_FILES'].split(/,\s*/))
|
|
|
|
else
|
|
|
|
rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG')
|
2008-06-18 23:09:48 -04:00
|
|
|
rdoc.rdoc_files.include(Dir['lib/**/*.rb'] -
|
2008-06-18 23:16:02 -04:00
|
|
|
Dir['lib/*/vendor/**/*.rb'])
|
|
|
|
rdoc.rdoc_files.exclude('lib/actionpack.rb')
|
2006-04-27 14:22:20 -04:00
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
}
|
|
|
|
|
2009-09-25 01:46:04 -04:00
|
|
|
spec = eval(File.read('actionpack.gemspec'))
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
Rake::GemPackageTask.new(spec) do |p|
|
|
|
|
p.gem_spec = spec
|
|
|
|
end
|
|
|
|
|
2010-02-04 21:28:45 -05:00
|
|
|
desc "Release to gemcutter"
|
2010-02-05 03:03:03 -05:00
|
|
|
task :release => :package do
|
|
|
|
require 'rake/gemcutter'
|
|
|
|
Rake::Gemcutter::Tasks.new(spec).define
|
|
|
|
Rake::Task['gem:push'].invoke
|
|
|
|
end
|
2010-02-04 21:28:45 -05:00
|
|
|
|
2005-04-13 01:06:40 -04: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 14:56:59 -04:00
|
|
|
|
2005-04-13 01:06:40 -04:00
|
|
|
total_lines += lines
|
|
|
|
total_codelines += codelines
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2005-04-13 01:06:40 -04:00
|
|
|
lines, codelines = 0, 0
|
|
|
|
end
|
|
|
|
|
|
|
|
puts "Total: Lines #{total_lines}, LOC #{total_codelines}"
|
|
|
|
end
|
|
|
|
|
2005-07-02 02:23:35 -04:00
|
|
|
# Publishing ------------------------------------------------------
|
|
|
|
|
|
|
|
task :update_scriptaculous do
|
2006-03-04 12:12:03 -05:00
|
|
|
for js in %w( controls dragdrop effects )
|
2006-03-06 14:45:02 -05: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 12:12:03 -05:00
|
|
|
end
|
2005-07-02 02:23:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
desc "Updates actionpack to the latest version of the javascript spinoffs"
|
2006-03-04 12:12:03 -05:00
|
|
|
task :update_js => [ :update_scriptaculous ]
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2005-03-27 08:33:54 -05:00
|
|
|
# Publishing ------------------------------------------------------
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
desc "Publish the API documentation"
|
2009-10-16 14:56:59 -04:00
|
|
|
task :pdoc => [:rdoc] do
|
2009-05-11 22:49:11 -04:00
|
|
|
require 'rake/contrib/sshpublisher'
|
2008-06-18 22:56:22 -04:00
|
|
|
Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/ap", "doc").upload
|
2010-03-01 21:55:43 -05:00
|
|
|
end
|