diff --git a/lib/rocco/tasks.rb b/lib/rocco/tasks.rb index b6ed28d..a5b2a61 100644 --- a/lib/rocco/tasks.rb +++ b/lib/rocco/tasks.rb @@ -58,6 +58,8 @@ class Rocco # `Rocco::Task.new` takes a task name, the destination directory docs # should be built under, and a source file pattern or file list. class Task + include Rake::DSL + def initialize(task_name, dest='docs/', sources='lib/**/*.rb', options={}) @name = task_name @dest = dest[-1] == ?/ ? dest : "#{dest}/" diff --git a/rocco.gemspec b/rocco.gemspec index 168e798..1ceee7d 100644 --- a/rocco.gemspec +++ b/rocco.gemspec @@ -45,6 +45,7 @@ Gem::Specification.new do |s| s.test_files = s.files.select {|path| path =~ /^test\/.*_test.rb/} s.add_dependency 'rdiscount' s.add_dependency 'mustache' + s.add_development_dependency 'rake', '>= 0.9.0' s.has_rdoc = false s.homepage = "http://rtomayko.github.com/rocco/"