1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
$:.unshift "./lib"
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'rake/packagetask'
require 'rake/gempackagetask'
require 'locale_rails/version'
#desc "Default Task"
#task :default => [ :test ]
PKG_NAME = "locale_rails"
PKG_VERSION = LocaleRails::VERSION
# Run the unit tests
task :test do
cd "test"
sh "rake test"
cd ".."
end
Rake::RDocTask.new { |rdoc|
begin
allison = `allison --path`.chop
rescue Exception
allison = ""
end
rdoc.rdoc_dir = 'doc'
rdoc.title = "Ruby-Locale for Ruby on Rails"
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README.rdoc', 'ChangeLog')
rdoc.rdoc_files.include('lib/**/*.rb')
rdoc.template = allison if allison.size > 0
}
desc "Create gem and tar.gz"
spec = Gem::Specification.new do |s|
s.name = PKG_NAME
s.version = PKG_VERSION
s.summary = 'Ruby-Locale for Ruby on Rails is the pure ruby library which provides basic functions for localization based on Ruby-Locale.'
s.author = 'Masao Mutoh'
s.email = 'mutomasa at gmail.com'
s.homepage = 'http://locale.rubyforge.org/'
s.rubyforge_project = "locale"
s.files = FileList['**/*'].to_a.select{|v| v !~ /pkg|CVS|git/}
s.require_path = 'lib'
s.bindir = 'bin'
s.add_dependency('locale', '>= 2.0.5')
s.has_rdoc = true
s.description = <<-EOF
Ruby-Locale for Ruby on Rails is the pure ruby library which provides basic functions for localization.
EOF
end
Rake::GemPackageTask.new(spec) do |p|
p.gem_spec = spec
p.need_tar_gz = false
p.need_zip = false
end
desc "Publish the release files to RubyForge."
task :release => [ :package ] do
require 'rubyforge'
rubyforge = RubyForge.new
rubyforge.configure
rubyforge.login
rubyforge.add_release("locale", "locale_rails",
PKG_VERSION,
"pkg/#{PKG_NAME}-#{PKG_VERSION}.gem")
end
|