mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
47 lines
1.1 KiB
Ruby
47 lines
1.1 KiB
Ruby
gem 'rdoc', '>= 2.5.9'
|
|
require 'rdoc'
|
|
require 'rake/testtask'
|
|
require 'rdoc/task'
|
|
require 'rake/gempackagetask'
|
|
|
|
task :default => :test
|
|
Rake::TestTask.new do |t|
|
|
t.libs << 'test'
|
|
t.pattern = 'test/**/*_test.rb'
|
|
t.warning = true
|
|
end
|
|
|
|
namespace :test do
|
|
Rake::TestTask.new(:isolated) do |t|
|
|
t.pattern = 'test/ts_isolated.rb'
|
|
end
|
|
end
|
|
|
|
# Create compressed packages
|
|
dist_dirs = [ "lib", "test"]
|
|
|
|
# Genereate the RDoc documentation
|
|
|
|
RDoc::Task.new { |rdoc|
|
|
rdoc.rdoc_dir = 'doc'
|
|
rdoc.title = "Active Support -- Utility classes and standard library extensions from Rails"
|
|
rdoc.options << '-f' << 'horo'
|
|
rdoc.options << '--main' << 'README.rdoc'
|
|
rdoc.options << '--charset' << 'utf-8'
|
|
rdoc.rdoc_files.include('README.rdoc', 'CHANGELOG')
|
|
rdoc.rdoc_files.include('lib/active_support.rb')
|
|
rdoc.rdoc_files.include('lib/active_support/**/*.rb')
|
|
}
|
|
|
|
spec = eval(File.read('activesupport.gemspec'))
|
|
|
|
Rake::GemPackageTask.new(spec) do |p|
|
|
p.gem_spec = spec
|
|
end
|
|
|
|
desc "Release to gemcutter"
|
|
task :release => :package do
|
|
require 'rake/gemcutter'
|
|
Rake::Gemcutter::Tasks.new(spec).define
|
|
Rake::Task['gem:push'].invoke
|
|
end
|