├── .gitignore ├── .gitlab-ci.yml ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── SECURITY.md ├── bin ├── console └── setup ├── csv-safe.gemspec ├── lib └── csv-safe.rb └── spec ├── csv_safe_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/bin/setup -------------------------------------------------------------------------------- /csv-safe.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/csv-safe.gemspec -------------------------------------------------------------------------------- /lib/csv-safe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/lib/csv-safe.rb -------------------------------------------------------------------------------- /spec/csv_safe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/spec/csv_safe_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zvory/csv-safe/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------