Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix foreign key row reporting and empty table checks #193

Open
wants to merge 38 commits into
base: main
Choose a base branch
from
Open
Changes from 2 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
5b55fb1
Add 'row' and 'col' values to foreign key errors
Nov 2, 2016
6939bf1
Fix column number for duplicate key too
Nov 2, 2016
97bd060
Allow leading zero on dateformat 'd'
Nov 7, 2016
87904c4
fix up dMMyyyy formatting
Nov 8, 2016
d24000a
Fix foreign key row reporting and empty table checks
Dec 9, 2016
acfb679
Merge branch 'master' into feature/allow-leading-zero-on-dateformat-d
May 12, 2017
af83491
Fix error on missing foreign key table
May 12, 2017
66902a5
return duplicate key error key as tuple not string
May 12, 2017
f47c2f3
add metadata to build process
May 12, 2017
bc76c9b
Merge remote-tracking branch 'upstream/master' into v0.4.0.1
veryrusty Oct 7, 2017
cfc88b0
Merge branch 'v0.4.0.1'
veryrusty Oct 7, 2017
926d28b
Don't revalidate values for FK checks
stephent-stratdat Jun 6, 2018
0c818af
Fix referencing_columns for array values
stephent-stratdat Jun 6, 2018
ed58c28
Fix crash when no csv file specified (only schema)
stephent-stratdat Jun 6, 2018
11911e7
Merge pull request #1 from strategicdata/feature/fks-on-array
sdt Jun 7, 2018
0ae2901
Return [] not nil for empty array values
stephent-stratdat Jun 19, 2018
869bb8f
Merge pull request #4 from strategicdata/bugfix/empty-array-values
stephent-stratdat Jun 19, 2018
f1041f8
Don't iterate array values if nil
stephent-stratdat Jun 27, 2018
5fdecde
Merge pull request #5 from strategicdata/bugfix/empty-line-with-array…
stephent-stratdat Jun 28, 2018
3315a87
Add script to build the gemfile using docker
stephent-stratdat Jun 28, 2018
5a264a0
Merge pull request #6 from strategicdata/docker-build-script
stephent-stratdat Jun 28, 2018
389ac51
Bump version to 0.4.0.2 (0.4.0 + SD patches)
stephent-stratdat Jun 28, 2018
91e97af
Update ruby.yml
adamc00 Sep 13, 2019
4063a04
Update ruby.yml
adamc00 Sep 13, 2019
1188311
Testing build changes
adamc00 Sep 13, 2019
f71ac46
load_from_json -> load_from_uri, tidy up
adamc00 Sep 13, 2019
d804c4f
load_from_json -> load_from_uri, tidy up
adamc00 Sep 13, 2019
5d27914
Merge branch 'master' into master
Floppy Feb 4, 2020
097b1c1
Merge remote-tracking branch 'upstream/master'
Oct 16, 2020
af325eb
Add custom time format H:mm
Nov 23, 2020
eac596c
Bump to 0.4.0.3 (0.4.0 + SD extensions)
Nov 23, 2020
423eceb
Use ruby 2.5 to build gem
Nov 23, 2020
5542105
Create FileUrl module
stephent-stratdat Aug 12, 2021
e70550d
Convert FileUrl.path to FileUrl.file
stephent-stratdat Aug 12, 2021
9ad71d4
Remove unneeded Csvlint:: namespace prefixes
stephent-stratdat Aug 15, 2021
f931c71
Apply URI encode/decode to path<->url conversions
stephent-stratdat Aug 15, 2021
fea4eef
Merge pull request #8 from sdt/fix-filename-urls
veryrusty Aug 16, 2021
c6f7d5f
Bump to 0.4.0.4 (0.4.0 + SD extensions)
Aug 16, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions build-gemfile.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash -e

docker run --rm -ti -u $( id -u ):$( id -g ) -v $PWD:/build -w /build ruby:2.3 \
bash -e -c '
echo Installing dependencies
gem install -g
echo Building gemfile
gem build csvlint.gemspec
'
ls -lF *.gem