Sha256: 14251a0fba7a5f6634e2477b3efe3c215c106401ff8836c83e9a739d5cb87d89
Contents?: true
Size: 783 Bytes
Versions: 3
Compression:
Stored size: 783 Bytes
Contents
# -*- ruby -*- require 'rubygems' require 'hoe' require 'fileutils' require './lib/build-tool' # Generate all the Rake tasks # Run 'rake -T' to see list of generated tasks (from gem root directory) Hoe.spec 'build-tool' do self.developer 'Michael Jansen', 'info@michael-jansen.biz' self.post_install_message = <<-EOS To start with build-tool try the following commands: > build-tool recipe list > build-tool recipe install <recipe> EOS self.rubyforge_name = self.name self.extra_deps = [ ['logging','>= 1.2.2'], ['hoe', ">= 2.3.3"], # -> hoe, rubigen ] 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
build-tool-0.1.2 | Rakefile |
build-tool-0.1.0 | Rakefile |
build-tool-0.1.1 | Rakefile |