# -*- ruby -*-

require 'rubygems'
require 'hoe'
require './lib/counter_string.rb'
require './lib/acts_as_fast_nested_set.rb'

Hoe.new('ActsAsFastNestedSet', Adocca::Acts::ActsAsFastNestedSet::VERSION) do |p|
  p.rubyforge_name = 'adocca_plugins'
  p.summary = 'Fast nested set, really fast!'
  p.author = 'adocca Entertainment AB'
  # p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
  # p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
  p.extra_deps << ['AdoccaMemcache', '>= 0.1.4']
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
end

# vim: syntax=Ruby
