You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							19 lines
						
					
					
						
							533 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							19 lines
						
					
					
						
							533 B
						
					
					
				
								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
							 | 
						|
								
							 |