Sha256: a927add5f2b2664bd0a711b3d500070e31c4e641da657078c75a7f41c234960e
Contents?: true
Size: 1.16 KB
Versions: 2
Compression:
Stored size: 1.16 KB
Contents
# -*- ruby -*- require 'rubygems' require 'hoe' require 'fileutils' require './lib/build-tool' Hoe.plugin :git Hoe.plugin :doofus Hoe.plugin :debugging # Generate all the Rake tasks # Run 'rake -T' to see list of generated tasks (from gem root directory) Hoe.spec( 'build-tool' ) do |build_tool| build_tool.developer 'Michael Jansen', 'info@michael-jansen.biz' build_tool.post_install_message = <<-EOS To start with build-tool try the following commands: > build-tool recipe list > build-tool recipe install <recipe> For documentation see http://michael-jansen.biz/build-tool EOS build_tool.rubyforge_name = build_tool.name build_tool.extra_deps = [ ['logging', ">= 1.2.2"], ['sequel', ">= 3.8.0"], ['sqlite3-ruby', ">= 1.2" ] ] build_tool.extra_dev_deps = [ ['hoe-debugging', ">= 1.0.1"], ['hoe-doofus', ">= 1.0.0"], ['hoe-git', ">= 1.3.0"], ['racc', ">= 1.4.6"], ['rexical', ">= 1.0.4"] ] end Dir['tasks/**/*.rake'].each { |t| load t } # Want other tests/tasks run by default # remove_task :default # task :default => [:spec, :features]
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
build-tool-0.3 | Rakefile |
build-tool-0.2 | Rakefile |