colorls/.travis.yml
Claudio Bley 8428efa010 Add --hyperlink option
This generates `file://` links using ANSI escape sequences which opens the
given file using the default application for the file type on your system.

A terminal emulator supporting hyperlinks is required, otherwise the links
will be ignored.
2018-08-17 23:00:55 +02:00

44 lines
754 B
YAML

language:
ruby
rvm:
- '2.1'
- '2.2'
- '2.3.0'
- '2.4.0'
- '2.5.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 --hyperlink
- colorls -t
- colorls --sort=time
- colorls -U
- colorls --sort=none
- colorls -S
- colorls --sort=size
- colorls -h
- colorls --gs
- colorls spec/fixtures/symlinks
- colorls README.md
- colorls *
- colorls | grep /
install:
- gem install bundler
- bundle install