forked from brendanstennett/csv_sniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
424 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,19 @@ | ||
*.gem | ||
|
||
/.bundle/ | ||
/.yardoc | ||
/Gemfile.lock | ||
/_yardoc/ | ||
/doc/ | ||
/pkg/ | ||
/spec/reports/ | ||
/tmp/ | ||
/vendor/ | ||
*.bundle | ||
*.so | ||
*.o | ||
*.a | ||
dockercfg.env | ||
|
||
mkmf.log | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM brendan6/ruby:2.2.4 | ||
MAINTAINER Chris Sandison <chris@thinkdataworks.com> | ||
|
||
ADD . $APP_HOME | ||
|
||
RUN bundle install | ||
|
||
CMD bundle exec rspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
|
||
group :development, :test do | ||
gem 'pry-byebug' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
csv_sniffer (0.2.1) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
activesupport (5.2.0) | ||
concurrent-ruby (~> 1.0, >= 1.0.2) | ||
i18n (>= 0.7, < 2) | ||
minitest (~> 5.1) | ||
tzinfo (~> 1.1) | ||
byebug (10.0.2) | ||
coderay (1.1.2) | ||
concurrent-ruby (1.0.5) | ||
diff-lcs (1.3) | ||
factory_girl (4.9.0) | ||
activesupport (>= 3.0.0) | ||
i18n (1.0.1) | ||
concurrent-ruby (~> 1.0) | ||
method_source (0.9.0) | ||
minitest (5.11.3) | ||
pry (0.11.3) | ||
coderay (~> 1.1.0) | ||
method_source (~> 0.9.0) | ||
pry-byebug (3.6.0) | ||
byebug (~> 10.0) | ||
pry (~> 0.10) | ||
rack (2.0.5) | ||
rack-test (1.0.0) | ||
rack (>= 1.0, < 3) | ||
rake (10.5.0) | ||
rspec (3.7.0) | ||
rspec-core (~> 3.7.0) | ||
rspec-expectations (~> 3.7.0) | ||
rspec-mocks (~> 3.7.0) | ||
rspec-core (3.7.1) | ||
rspec-support (~> 3.7.0) | ||
rspec-expectations (3.7.0) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.7.0) | ||
rspec-mocks (3.7.0) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.7.0) | ||
rspec-support (3.7.1) | ||
thread_safe (0.3.6) | ||
tzinfo (1.2.5) | ||
thread_safe (~> 0.1) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
bundler (~> 1.7) | ||
csv_sniffer! | ||
factory_girl | ||
pry-byebug | ||
rack | ||
rack-test | ||
rake (~> 10.0) | ||
rspec | ||
rspec-core | ||
rspec-mocks | ||
|
||
BUNDLED WITH | ||
1.16.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,23 @@ | ||
Gem::Specification.new do |s| | ||
s.name = 'csv_sniffer' | ||
s.version = '0.1.2' | ||
s.date = '2015-12-28' | ||
s.summary = "CSV library for heuristic detection of CSV properties" | ||
s.description = "CSV Sniffer is a set of functions that allow a user detect the delimiter character in use, whether the values in the CSV file are quote enclosed, whether the file contains a header, and more. The library is intended to detect information to be used as configuration inputs for CSV parsers." | ||
s.authors = ["Tim Ojo"] | ||
s.email = 'ojo.tim@gmail.com' | ||
s.homepage = 'https://github.com/tim-ojo/csv_sniffer' | ||
s.license = 'MIT' | ||
Gem::Specification.new do |spec| | ||
spec.name = 'csv_sniffer' | ||
spec.version = '0.2.0' | ||
spec.date = '2018-06-15' | ||
spec.summary = "CSV library for heuristic detection of CSV properties" | ||
spec.description = "CSV Sniffer is a set of functions that allow a user detect the delimiter character in use, whether the values in the CSV file are quote enclosed, whether the file contains a header, and more. The library is intended to detect information to be used as configuration inputs for CSV parsers." | ||
spec.authors = ["Chris Sandison"] | ||
spec.email = 'chris@thinkdataworks.com' | ||
spec.homepage = 'https://github.com/thinkdataworks/csv_sniffer' | ||
spec.license = 'MIT' | ||
|
||
s.files = `git ls-files`.split($/) | ||
s.test_files = s.files.grep(/^test/) | ||
s.add_development_dependency 'test-unit', '~> 0' | ||
spec.files = `git ls-files`.split($/) | ||
spec.test_files = spec.files.grep(/.*_spec\.rb/) | ||
|
||
spec.add_development_dependency "bundler", "~> 1.7" | ||
spec.add_development_dependency "rake", "~> 10.0" | ||
spec.add_development_dependency "rspec" | ||
spec.add_development_dependency "rspec-core" | ||
spec.add_development_dependency "rspec-mocks" | ||
spec.add_development_dependency "factory_girl" | ||
spec.add_development_dependency "rack" | ||
spec.add_development_dependency "rack-test" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.