mirror of
				https://github.com/ThrowTheSwitch/CMock
				synced 2025-10-31 01:06:12 -04:00 
			
		
		
		
	git-svn-id: http://cmock.svn.sourceforge.net/svnroot/cmock/trunk@6 bf332499-1b4d-0410-844d-d2d48d5cc64c
		
			
				
	
	
		
			20 lines
		
	
	
		
			533 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			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
 |