mirror of
				https://github.com/cmur2/dyndnsd.git
				synced 2025-10-31 10:25:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			584 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			584 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require 'bundler/gem_tasks'
 | |
| require 'rspec/core/rake_task'
 | |
| require 'rubocop/rake_task'
 | |
| require 'bundler/audit/task'
 | |
| 
 | |
| RSpec::Core::RakeTask.new(:spec)
 | |
| RuboCop::RakeTask.new
 | |
| Bundler::Audit::Task.new
 | |
| 
 | |
| desc 'Should be run by developer once to prepare initial solargraph usage (fill caches etc.)'
 | |
| task :'solargraph:init' do
 | |
|   sh 'solargraph download-core'
 | |
| end
 | |
| 
 | |
| desc 'Run experimental solargraph type checker'
 | |
| task :'solargraph:tc' do
 | |
|   sh 'solargraph typecheck'
 | |
| end
 | |
| 
 | |
| task default: [:rubocop, :spec, 'bundle:audit']
 | |
| 
 | |
| task travis: [:default, :'solargraph:tc']
 |