mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			365 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			365 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
language: ruby
 | 
						|
sudo: false
 | 
						|
 | 
						|
addons:
 | 
						|
  apt:
 | 
						|
    packages:
 | 
						|
    - libicu-dev
 | 
						|
    - libicu48
 | 
						|
 | 
						|
before_install: script/travis/before_install
 | 
						|
 | 
						|
script:
 | 
						|
  - bundle exec rake
 | 
						|
  - script/licensed verify
 | 
						|
 | 
						|
rvm:
 | 
						|
  - 2.1
 | 
						|
  - 2.2
 | 
						|
  - 2.3.3
 | 
						|
  - 2.4.0
 | 
						|
 | 
						|
notifications:
 | 
						|
  disabled: true
 | 
						|
 | 
						|
git:
 | 
						|
  submodules: false
 | 
						|
  depth: 3
 | 
						|
 | 
						|
cache: bundler
 | 
						|
dist: precise
 | 
						|
 | 
						|
bundler_args: --without debug
 |