colorls/.travis.yml
Claudio Bley 6fa9ca2112 Only filter hidden files when listing a directory
* add `.hidden-file` to fixtures
* add check that `.hidden-file` is found to .travis.yml

Fixes #101.
2017-08-18 08:41:47 +02:00

36 lines
597 B
YAML

language:
ruby
rvm:
- '2.1'
- '2.2'
- '2.3.0'
- '2.4.0'
script:
- bundle exec rubocop
- bundle exec rspec
- rake install
- colorls
- colorls -1
- colorls -a
- colorls -A
- colorls -d
- colorls -f
- colorls -l
- colorls -l spec/fixtures/symlinks
- ( cd spec/fixtures ; colorls .hidden-file ) | fgrep '.hidden-file'
- colorls -l README.md
- colorls -r
- colorls -sd
- colorls -sf
- colorls -t
- colorls -h
- colorls spec/fixtures/symlinks
- colorls README.md
- colorls *
- colorls | grep /
install:
- gem install bundler
- bundle install