Sha256: 48b6997a578d4d186745d5f0c48dc8dfa54f1f8cc380cce26c000ff2943c5c1a
Contents?: true
Size: 687 Bytes
Versions: 4
Compression:
Stored size: 687 Bytes
Contents
# Note that these commands are specific for a docker environment on MS Windows. # to generate Gemfile.lock file docker run --rm -v %CD%:/usr/src/app -w /usr/src/app ruby:2.5 bundle install # to build docker image from source (the ending dot is significant) docker build -t csvlint . # to run tests docker run -it --rm csvlint rake # to run csvlint command line with a CSV file. # cd to the directory with the CSV file then docker run -it --rm -v %CD%:/tmp csvlint ./bin/csvlint --dump-errors /tmp/file-to-lint.csv # to enter the linux container docker run -it --rm -v %CD%:/tmp csvlint bash # to enter the ruby REPL docker run -it --rm -v %CD%:/tmp csvlint irb
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
csvlint-1.4.0 | docker_notes_for_windows.txt |
csvlint-1.3.0 | docker_notes_for_windows.txt |
csvlint-1.2.0 | docker_notes_for_windows.txt |
csvlint-1.1.0 | docker_notes_for_windows.txt |