2005-01-02 10:16:59 -05:00
|
|
|
require 'rake/testtask'
|
2005-02-23 21:02:12 -05:00
|
|
|
require 'rake/rdoctask'
|
2005-02-15 10:57:44 -05:00
|
|
|
require 'rake/gempackagetask'
|
2008-03-18 00:46:51 -04:00
|
|
|
|
2005-01-02 10:16:59 -05:00
|
|
|
task :default => :test
|
2009-09-25 02:16:41 -04:00
|
|
|
Rake::TestTask.new do |t|
|
|
|
|
t.libs << 'test'
|
2005-01-09 10:02:39 -05:00
|
|
|
t.pattern = 'test/**/*_test.rb'
|
2007-10-07 05:15:26 -04:00
|
|
|
t.warning = true
|
2009-09-25 02:16:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
namespace :test do
|
|
|
|
Rake::TestTask.new(:isolated) do |t|
|
|
|
|
t.pattern = 'test/ts_isolated.rb'
|
|
|
|
end
|
2009-04-22 20:41:28 -04:00
|
|
|
end
|
2005-02-15 10:57:44 -05:00
|
|
|
|
|
|
|
# Create compressed packages
|
|
|
|
dist_dirs = [ "lib", "test"]
|
|
|
|
|
2005-02-23 21:02:12 -05:00
|
|
|
# Genereate the RDoc documentation
|
|
|
|
|
|
|
|
Rake::RDocTask.new { |rdoc|
|
|
|
|
rdoc.rdoc_dir = 'doc'
|
|
|
|
rdoc.title = "Active Support -- Utility classes and standard library extensions from Rails"
|
2006-03-27 22:31:01 -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'
|
2005-02-23 21:02:12 -05:00
|
|
|
rdoc.rdoc_files.include('README', 'CHANGELOG')
|
|
|
|
rdoc.rdoc_files.include('lib/active_support.rb')
|
2008-06-18 23:13:21 -04:00
|
|
|
rdoc.rdoc_files.include('lib/active_support/**/*.rb')
|
2005-02-23 21:02:12 -05:00
|
|
|
}
|
|
|
|
|
2009-09-25 01:24:34 -04:00
|
|
|
spec = eval(File.read('activesupport.gemspec'))
|
2005-02-15 10:57: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
|
2005-02-25 17:07:50 -05:00
|
|
|
|
|
|
|
desc "Publish the API documentation"
|
2009-10-16 14:56:59 -04:00
|
|
|
task :pdoc => [:rdoc] do
|
2008-11-08 18:58:08 -05:00
|
|
|
require 'rake/contrib/sshpublisher'
|
2008-06-18 22:56:22 -04:00
|
|
|
Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/as", "doc").upload
|
2005-02-25 17:07:50 -05:00
|
|
|
end
|