Sha256: ec01050f683c8722a6cfb8af4a68937f52c03662e17deb64702690ac2d3c89fe
Contents?: true
Size: 1.25 KB
Versions: 4
Compression:
Stored size: 1.25 KB
Contents
#- ©2009 Rick DeNatale #- All rights reserved. Refer to the file README.txt for the license # %w[rubygems rake rake/clean fileutils newgem rubigen].each { |f| require f } require File.dirname(__FILE__) + '/lib/ri_cal' # Generate all the Rake tasks # Run 'rake -T' to see list of generated tasks (from gem root directory) $hoe = Hoe.new('ri_cal', RiCal::VERSION) do |p| p.developer('author=Rick DeNatale', 'rick.denatale@gmail.com') p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n") # p.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required p.rubyforge_name = 'rical' # p.extra_deps = [ # ['tzinfo','>= 2.0.2'], # ] p.extra_dev_deps = [ ['newgem', ">= #{::Newgem::VERSION}"] ] p.clean_globs |= %w[**/.DS_Store tmp *.log] path = (p.rubyforge_name == p.name) ? p.rubyforge_name : "\#{p.rubyforge_name}/\#{p.name}" p.remote_rdoc_dir = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc') p.rsync_args = '-av --delete --ignore-errors' end require 'newgem/tasks' # load /tasks/*.rake Dir['tasks/**/*.rake'].each { |t| load t } # TODO - want other tests/tasks run by default? Add them to the list task :default => [:"spec:with_tzinfo_gem", :"spec:with_active_support"]
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
rubyredrick-ri_cal-0.5.1 | Rakefile |
rubyredrick-ri_cal-0.5.2 | Rakefile |
ri_cal-0.5.2 | Rakefile |
ri_cal-0.5.1 | Rakefile |