mirror of
				https://github.com/red-data-tools/YouPlot.git
				synced 2025-10-31 16:28:17 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			244 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			244 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| module YouPlot
 | |
|   Options = Struct.new(
 | |
|     :delimiter,
 | |
|     :transpose,
 | |
|     :headers,
 | |
|     :pass,
 | |
|     :output,
 | |
|     :fmt,
 | |
|     :progressive,
 | |
|     :encoding,
 | |
|     :color_names,
 | |
|     :debug,
 | |
|     keyword_init: true
 | |
|   )
 | |
| end
 | 
