Sha256: 5f16e1ccf972c8a53779a1b81b59c26777e17bf8536acaf7e2b4beaeadc3b7d5
Contents?: true
Size: 1.21 KB
Versions: 3
Compression:
Stored size: 1.21 KB
Contents
%w[rubygems rake rake/clean fileutils newgem rubigen].each { |f| require f } require File.dirname(__FILE__) + '/lib/autotest_notification' # Generate all the Rake tasks # Run 'rake -T' to see list of generated tasks (from gem root directory) $hoe = Hoe.new('autotest-notification', AutotestNotification::VERSION) do |p| p.developer('Carlos Brando', 'eduardobrando@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 = p.name # TODO this is default value p.extra_deps = [ ['ZenTest', '>= 3.9.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, :features]
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
carlosbrando-autotest-notification-1.7.0 | Rakefile |
carlosbrando-autotest-notification-1.7.1 | Rakefile |
carlosbrando-autotest-notification-1.7.2 | Rakefile |