ruby/test/csv
David Rodríguez f48655d04d Remove unneeded exec bits from some files
I noticed that some files in rubygems were executable, and I could think
of no reason why they should be.

In general, I think ruby files should never have the executable bit set
unless they include a shebang, so I run the following command over the
whole repo:

```bash
find . -name '*.rb' -type f -executable -exec bash -c 'grep -L "^#!" $1 || chmod -x $1' _ {} \;
```
2019-11-09 21:36:30 +09:00
..
interface Fix remaining warning issues in the tests due to keyword argument separation 2019-08-30 12:39:31 -07:00
parse Import CSV 3.1.2 (#2547) 2019-10-12 14:03:21 +09:00
write test/csv/write/test_general.rb: suppress warnings 2019-10-15 23:29:49 +09:00
helper.rb Restore support library for only test files that are digest and csv. 2019-07-09 21:16:49 +09:00
line_endings.gz * lib/csv.rb: Import the FasterCSV source as the new CSV class. 2007-12-25 02:46:26 +00:00
test_data_converters.rb Remove unneeded exec bits from some files 2019-11-09 21:36:30 +09:00
test_encodings.rb Remove unneeded exec bits from some files 2019-11-09 21:36:30 +09:00
test_features.rb Remove unneeded exec bits from some files 2019-11-09 21:36:30 +09:00
test_row.rb Remove unneeded exec bits from some files 2019-11-09 21:36:30 +09:00
test_table.rb Remove unneeded exec bits from some files 2019-11-09 21:36:30 +09:00