mirror of
				https://github.com/red-data-tools/YouPlot.git
				synced 2025-10-31 08:18:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			226 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			226 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require 'bundler/gem_tasks'
 | |
| require 'rake/testtask'
 | |
| 
 | |
| Rake::TestTask.new(:test) do |t|
 | |
|   t.libs << 'test'
 | |
|   t.libs << 'lib'
 | |
|   t.test_files = FileList['test/**/*_test.rb']
 | |
| end
 | |
| 
 | |
| task default: :test
 | 
