mirror of
				https://github.com/red-data-tools/YouPlot.git
				synced 2025-11-04 11:38:10 +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
 |