Sha256: d88bb6cd82e418bb631cd832917ecfdd53996549ebff4536a0012a0ff766fc88

Contents?: true

Size: 1.42 KB

Versions: 1

Compression:

Stored size: 1.42 KB

Contents

# -*- ruby -*-
require 'rubygems'

# http://rubyforge.org/tracker/index.php?func=detail&aid=28920&group_id=1513&atid=5921
begin
    require 'psych'
rescue ::LoadError
end

require 'hoe'
require 'fileutils'
require './lib/build-tool'

Hoe.plugin :git
Hoe.plugin :doofus
Hoe.plugin :debugging
Hoe.plugin :racc


# 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.version = BuildTool::VERSION

  self.post_install_message = <<-EOS
    To start with build-tool try the following commands:
    > build-tool recipe add git://gitorious.org/build-tool/kde-trunk-recipe.git kde
    > build-tool recipe list
    > build-tool recipe install kde

    For documentation see http://michael-jansen.biz/build-tool

  EOS
  self.rubyforge_name = self.name

  self.extra_deps <<
    ['logging', ">= 1.4.3"] <<
    ['sequel', ">= 3.18.0"] <<
    ['sqlite3-ruby', ">= 1.3.1" ] <<
    ['ansi', '>= 1.2.2' ]

  self.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.5"]

  self.rex_flags = ""

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

1 entries across 1 versions & 1 rubygems

Version Path
build-tool-0.5.3 Rakefile