CMock/vendor/behaviors/Rakefile
2008-06-01 18:33:36 +00:00

20 lines
533 B
Ruby

require 'rake'
require 'rubygems'
require 'hoe'
Hoe.new('behaviors','1.0.3') do |p|
p.author = "Atomic Object LLC"
p.email = "dev@atomicobject.com"
p.url = "http://behaviors.rubyforge.org"
p.summary = "behavior-driven unit test helper"
p.description = <<-EOS
Behaviors allows for Test::Unit test case methods to be defined as
human-readable descriptions of program behavior. It also provides
Rake tasks to list the behaviors of your project.
EOS
p.test_globs = ['test/*_test.rb']
p.changes = <<-EOS
EOS
end