Sha256: 20ec6afb503bbb2b101e74f2b9c093b5624978e1e1b89e299a4bb3f2d08b53d4
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
%w[rubygems rake rake/clean fileutils newgem rubigen].each { |f| require f } require File.dirname(__FILE__) + '/lib/warcraft-armory' # Generate all the Rake tasks # Run 'rake -T' to see list of generated tasks (from gem root directory) $hoe = Hoe.new('warcraft-armory', WarcraftArmory::VERSION) do |p| p.developer('Ariejan de Vroom', 'ariejan@ariejan.net') p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n") p.rubyforge_name = p.name p.extra_deps = [ ['hpricot','>= 0.6.164'], ] p.extra_dev_deps = [ ['newgem', ">= #{::Newgem::VERSION}"] ] # p.description = "The warcraft-armory gem allows your application to easily access information from the World of Warcraft Armory site." 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] task :default => [:spec]
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
warcraft-armory-0.1.0 | Rakefile |