require 'rubygems'
gem 'hoe', '>= 2.3.0'
require 'hoe'
%w[fileutils rubigen].each { |f| require f }
$:.unshift(File.dirname(__FILE__) + "/lib")

Hoe.plugin :newgem
Hoe.plugin :git
Hoe.plugin :website
Hoe.plugin :cucumberfeatures

# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.spec 'newgem' do
  developer 'Dr Nic Williams', 'drnicwilliams@gmail.com'
  self.post_install_message = 'PostInstall.txt'
  self.extra_deps           = [
    ['activesupport','~> 2.3.4'],
    ['rubigen',">= #{RubiGen::VERSION}"],
    ['hoe', ">= #{Hoe::VERSION}"],
    ['RedCloth','>= 4.1.1'], # for website generation
    ['syntax','>= 1.0.0']
  ]
  extra_dev_deps << ['cucumber', ">= 0.3.11"]
end

require 'newgem/tasks'

remove_task :default
task :default => :features
