mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
* Update licensee version This pulls in Licensed 0.10.0 too. * Use a full path to the grammars Licensed now enforces this as it's easier then guessing. * Ensure full path * Use new path for FSProject * Starting to adjust tests * require licensee again * Fix grammar tests * verify -> status * whitelist -> allowed * explicitly set cache_path in configuration default for licensed v1.0 changed from `vendor/licenses` to `.licenses` * load configuration from file location default configuration file location changed from `vendor/licenses/config.yml` to `.licensed.yml` * update gemspec for licensed 1.0.0 * Remove unused license hash
32 lines
358 B
YAML
32 lines
358 B
YAML
language: ruby
|
|
sudo: false
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libicu-dev
|
|
- libicu52
|
|
|
|
before_install: script/travis/before_install
|
|
|
|
script:
|
|
- bundle exec rake
|
|
- script/licensed status
|
|
|
|
rvm:
|
|
- 2.3.3
|
|
- 2.4.0
|
|
- 2.5.0
|
|
|
|
notifications:
|
|
disabled: true
|
|
|
|
git:
|
|
submodules: false
|
|
depth: 3
|
|
|
|
cache: bundler
|
|
dist: trusty
|
|
|
|
bundler_args: --without debug
|