Sha256: 8cb92ff8e95aa2f672a225e0b157176d3d7eddde5b1ecf2073ddc1fa3dd96858

Contents?: true

Size: 1.27 KB

Versions: 10

Compression:

Stored size: 1.27 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       = 'ri-cal'
  # p.extra_deps         = [
  #   ['tzinfo','>= 2.0.2'],
  # ]
  p.extra_dev_deps = [
    ['newgem', ">= #{::Newgem::VERSION}"],
    'ruby-prof'
  ]

  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

10 entries across 10 versions & 2 rubygems

Version Path
rubyredrick-ri_cal-0.5.3 Rakefile
rubyredrick-ri_cal-0.6.0 Rakefile
rubyredrick-ri_cal-0.6.1 Rakefile
rubyredrick-ri_cal-0.6.2 Rakefile
rubyredrick-ri_cal-0.6.3 Rakefile
ri_cal-0.6.0 Rakefile
ri_cal-0.5.3 Rakefile
ri_cal-0.6.1 Rakefile
ri_cal-0.6.3 Rakefile
ri_cal-0.6.2 Rakefile