Sha256: a224df358b423472a03b4a9495e1486d8cd632c71e5c92c21bed0c7512137f5d
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
%w[rubygems rake rake/clean fileutils newgem].each { |f| require f } require File.dirname(__FILE__) + '/lib/mechanical_github' # Generate all the Rake tasks # Run 'rake -T' to see list of generated tasks (from gem root directory) $hoe = Hoe.new('mechanical_github', MechanicalGithub::VERSION) do |p| p.developer('Dr Nic Williams', 'drnicwilliams@gmail.com') p.developer('Lincoln Stoll', 'lstoll@lstoll.net') p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n") p.extra_deps = [ ['mechanize'], ] 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 } task :default => [:spec, :features]
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
drnic-mechanical_github-0.2.0 | Rakefile |
drnic-mechanical_github-0.2.1 | Rakefile |