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-10-10 10:35:59 -04:00
|
|
|
require File.join(File.dirname(__FILE__), 'lib', 'active_support', 'version')
|
2005-02-15 10:57:44 -05:00
|
|
|
|
|
|
|
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
|
|
|
|
PKG_NAME = 'activesupport'
|
2005-11-16 19:32:16 -05:00
|
|
|
PKG_VERSION = ActiveSupport::VERSION::STRING + PKG_BUILD
|
2005-02-15 10:57:44 -05:00
|
|
|
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
|
2005-01-02 10:16:59 -05:00
|
|
|
|
2005-03-27 08:33:54 -05:00
|
|
|
RELEASE_NAME = "REL #{PKG_VERSION}"
|
|
|
|
|
|
|
|
RUBY_FORGE_PROJECT = "activesupport"
|
|
|
|
RUBY_FORGE_USER = "webster132"
|
|
|
|
|
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')
|
|
|
|
rdoc.rdoc_files.exclude('lib/active_support/vendor/*')
|
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
|
|
|
|
|
|
|
|
desc "Publish the beta gem"
|
|
|
|
task :pgem => [:package] do
|
2008-11-08 18:58:08 -05:00
|
|
|
require 'rake/contrib/sshpublisher'
|
2008-10-23 14:18:11 -04:00
|
|
|
Rake::SshFilePublisher.new("gems.rubyonrails.org", "/u/sites/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload
|
2008-10-23 14:29:25 -04:00
|
|
|
`ssh gems.rubyonrails.org '/u/sites/gems/gemupdate.sh'`
|
2005-02-15 10:57:44 -05:00
|
|
|
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
|
2005-03-27 08:33:54 -05:00
|
|
|
|
|
|
|
desc "Publish the release files to RubyForge."
|
2006-04-09 18:14:08 -04:00
|
|
|
task :release => [ :package ] do
|
2007-04-21 13:06:16 -04:00
|
|
|
require 'rubyforge'
|
2007-12-27 06:17:14 -05:00
|
|
|
require 'rake/contrib/rubyforgepublisher'
|
2005-03-27 08:33:54 -05:00
|
|
|
|
2007-04-21 13:06:16 -04:00
|
|
|
packages = %w( gem tgz zip ).collect{ |ext| "pkg/#{PKG_NAME}-#{PKG_VERSION}.#{ext}" }
|
|
|
|
|
|
|
|
rubyforge = RubyForge.new
|
|
|
|
rubyforge.login
|
|
|
|
rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
|
2007-10-06 21:05:42 -04:00
|
|
|
end
|
2008-03-30 18:24:35 -04:00
|
|
|
|
|
|
|
|
2009-03-24 20:03:47 -04:00
|
|
|
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/lib"
|
|
|
|
require 'active_support/values/time_zone'
|
2008-03-30 18:24:35 -04:00
|
|
|
|
|
|
|
namespace :tzinfo do
|
|
|
|
desc "Update bundled tzinfo gem. Only copies the subset of classes and definitions required to support Rails time zone features."
|
|
|
|
task :update => ['tzinfo:copy_classes', 'tzinfo:copy_definitions'] do
|
|
|
|
Rake::Task['tzinfo:cleanup_tmp'].invoke
|
2009-06-07 23:09:21 -04:00
|
|
|
puts <<-EOV
|
|
|
|
*** FINAL TZINFO BUNDLING STEPS ***
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2009-06-07 23:09:21 -04:00
|
|
|
1. Update TZInfo version in lib/active_support/vendor.rb
|
|
|
|
2. gem uninstall tzinfo on local system before running tests, to ensure tests are running against bundled version
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2009-06-07 23:09:21 -04:00
|
|
|
If a test fails because a particular zone can't be found, it's likely because the TZInfo identifier in the
|
|
|
|
ActiveSupport::TimeZone::MAPPING hash is referencing a linked timezone instead of referencing the timezone directly.
|
|
|
|
In this case, just change the MAPPING value to the correct identifier, and unpack TZInfo again.
|
|
|
|
EOV
|
2008-03-30 18:24:35 -04:00
|
|
|
end
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2008-03-30 18:24:35 -04:00
|
|
|
task :unpack_gem do
|
|
|
|
mkdir_p "tmp"
|
|
|
|
cd "tmp"
|
|
|
|
sh "gem unpack --version #{ENV['VERSION'] || "'> 0'"} tzinfo"
|
|
|
|
cd ".."
|
|
|
|
end
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2008-03-30 18:24:35 -04:00
|
|
|
task :copy_classes => :unpack_gem do
|
2009-10-27 21:53:07 -04:00
|
|
|
mkdir_p "#{destination_path}/lib/tzinfo"
|
|
|
|
cp "#{tmp_path}/lib/tzinfo.rb", "#{destination_path}/lib"
|
|
|
|
comment_requires_for_excluded_classes!('lib/tzinfo.rb')
|
2008-03-30 18:24:35 -04:00
|
|
|
files = FileList["#{tmp_path}/lib/tzinfo/*.rb"]
|
|
|
|
files.each do |file|
|
|
|
|
filename = File.basename(file)
|
|
|
|
unless excluded_classes.include? filename.sub(/.rb$/, '')
|
2009-10-27 21:53:07 -04:00
|
|
|
cp "#{tmp_path}/lib/tzinfo/#{filename}", "#{destination_path}/lib/tzinfo"
|
|
|
|
comment_requires_for_excluded_classes!("lib/tzinfo/#{filename}")
|
2008-03-30 18:24:35 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2008-03-30 18:24:35 -04:00
|
|
|
task :copy_definitions => :unpack_gem do
|
2009-10-27 21:53:07 -04:00
|
|
|
definitions_path = "#{destination_path}/lib/tzinfo/definitions/"
|
2008-03-30 18:24:35 -04:00
|
|
|
mkdir_p definitions_path
|
2008-06-14 16:18:55 -04:00
|
|
|
ActiveSupport::TimeZone::MAPPING.values.each do |zone|
|
2008-03-30 18:24:35 -04:00
|
|
|
subdir = nil
|
|
|
|
if /\// === zone
|
|
|
|
subdir = zone.sub(/\w+$/, '')
|
|
|
|
mkdir_p "#{definitions_path}/#{subdir}"
|
|
|
|
end
|
|
|
|
cp "#{tmp_path}/lib/tzinfo/definitions/#{zone}.rb", "#{definitions_path}/#{subdir}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
task :cleanup_tmp do
|
|
|
|
rm_rf "tmp"
|
|
|
|
end
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2008-03-30 18:24:35 -04:00
|
|
|
def comment_requires_for_excluded_classes!(file)
|
|
|
|
lines = open("#{destination_path}/#{file}") {|f| f.readlines}
|
|
|
|
updated = false
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2008-03-30 18:24:35 -04:00
|
|
|
new_lines = []
|
|
|
|
lines.each do |line|
|
|
|
|
if Regexp.new("require 'tzinfo/(#{excluded_classes.join('|')})'") === line
|
|
|
|
updated = true
|
|
|
|
new_lines << "# #{line}"
|
|
|
|
else
|
|
|
|
new_lines << line
|
|
|
|
end
|
|
|
|
end
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2008-03-30 18:24:35 -04:00
|
|
|
if updated
|
|
|
|
open("#{destination_path}/#{file}", "w") {|f| f.write(new_lines.join)}
|
|
|
|
end
|
|
|
|
end
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2008-03-30 18:24:35 -04:00
|
|
|
def version
|
|
|
|
ENV['VERSION'] ||= get_unpacked_version
|
|
|
|
end
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2008-03-30 18:24:35 -04:00
|
|
|
def get_unpacked_version
|
|
|
|
m = (FileList["tmp/tzinfo-*"].to_s.match /\d+\.\d+\.\d+/)
|
|
|
|
m ? m[0] : raise(LoadError, "TZInfo gem must be installed locally. `gem install tzinfo` and try again")
|
|
|
|
end
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2008-03-30 18:24:35 -04:00
|
|
|
def tmp_path
|
|
|
|
"tmp/tzinfo-#{version}"
|
|
|
|
end
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2008-03-30 18:24:35 -04:00
|
|
|
def destination_path
|
|
|
|
"lib/active_support/vendor/tzinfo-#{version}"
|
|
|
|
end
|
2009-10-16 14:56:59 -04:00
|
|
|
|
2008-03-30 18:24:35 -04:00
|
|
|
def excluded_classes
|
2008-03-30 19:49:52 -04:00
|
|
|
%w(country country_index_definition country_info country_timezone timezone_index_definition timezone_proxy tzdataparser)
|
2008-03-30 18:24:35 -04:00
|
|
|
end
|
2008-06-18 22:56:22 -04:00
|
|
|
end
|