csv2schema 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.ruby-version +1 -0
- data/.travis.yml +12 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +72 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/csv2schema.gemspec +35 -0
- data/lib/csv2schema.rb +14 -0
- data/lib/csv2schema/csv.rb +22 -0
- data/lib/csv2schema/formats.rb +30 -0
- data/lib/csv2schema/required.rb +20 -0
- data/lib/csv2schema/schema.rb +29 -0
- data/lib/csv2schema/version.rb +3 -0
- metadata +133 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
NTA1OWRiNjIxMmQ2YjdiZmMxM2M0MzkzOTI5OWNiNjE5Y2NmNGQzZA==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
Nzk0MGUxODRlMTVlZmY4Y2VlNDY2ZmQ2MGQ3ZGI1ZWY4ZDQzMjEyOA==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
NjE1YjMzZDIxZGQyMDllZjMyNWU2MDBhZmVmMmZjMDE3ODA0YmMzMDk1YzY5
|
10
|
+
MGQ5YzFiOWEwOWU3MTYwYTJkYzdlN2YzYWE4OTY1MjFhZGI0MDdlMGNmYTNh
|
11
|
+
Mzk1MGU2N2EyMDNmYjZlMDVhMGE1MTg2N2IwYzJkNTVkMmNmYWI=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NmUwNTQ5ZTU0MjNhNTY5MmQ4ZWNmMWUyNGFkZDk1M2M2YTYyYzgxZGVhNGI0
|
14
|
+
ZTViNzY3NGZmMzA2NmI3ZTBkNGVkNDc1MjQ5ZTJkMTU4NDZhNDJhOGQzYzU1
|
15
|
+
N2RhZmIzZjdlNWJlY2YzMWUzNDM0MWI2NzcxMTdmMDEzMDdmM2E=
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.3.1
|
data/.travis.yml
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 2.3.1
|
4
|
+
before_install: gem install bundler -v 1.11.2
|
5
|
+
deploy:
|
6
|
+
provider: rubygems
|
7
|
+
api_key:
|
8
|
+
secure: YZE/IjG3M/2QDaOHFHEMa34joShMud94A7CuvmNfQpqnpe1GntS9m84X58IAzFw6TbiJZdaZSdcMEjlskqepkw/aogwycx32t+bYSlgXY0DSz1sEu9lw3mQUwUzFyiNbpRUiELX3MsEpf72ZoFUnvKU24LHYb1r2+zkQcFqpZVVlzA0k24E10oYMz3MU6hjBvAJEuMfzVdjZo6oubl8Lx6Kz3YUxZUxLGajdrvoqKhrp/h9Eh0OHz53Psg+CK9Y0UoxQNFeUt/JBJUMwAHuHsIXDxFW4VVvYxrEiZ12H7dd7nbj0roR4I/YwcSyk5UIbWGcM0OTWCAVqruVD0TINj4gTrREO5zA6RP9aWa7PBJe1Ddp6jQBlFWCYm0mZMe/57hHA9jklVRFirggMAOsB6qzuGda7lElqqbKAUaJDY7mQAmSn3F8tuQDrRJmmrC2jogtrwgCpzPihLXGlSwmcACmcJ5C6mAuEtxcd1+ZE9bHotIPUVnnfHyshP0frIjkrcFcufl4+gCZhzcux81usGerSuM4QmfT8eyhkPSf7mZj2PKHt2ErUdfmm37HHt4WxGbes69ewvlZuNQIyonBV/dGoYWOwqYMAwxj5Furyk8R1jo2Fk5co3OwsoHEHo4axUDT4dCoUfq1A49KEGefvCRnTXtBnl2/B32u+debtMEU=
|
9
|
+
gem: csv2schema
|
10
|
+
on:
|
11
|
+
tags: true
|
12
|
+
repo: theodi/csv2schema
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at pezholio@gmail.com. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 pezholio
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
[![Build Status](http://img.shields.io/travis/theodi/csv2schema.svg?style=flat-square)](https://travis-ci.org/theodi/csv2schema)
|
2
|
+
[![Dependency Status](http://img.shields.io/gemnasium/theodi/csv2schema.svg?style=flat-square)](https://gemnasium.com/theodi/csv2schema)
|
3
|
+
[![Code Climate](http://img.shields.io/codeclimate/github/theodi/csv2schema.svg?style=flat-square)](https://codeclimate.com/github/theodi/csv2schema)
|
4
|
+
[![Gem Version](http://img.shields.io/gem/v/csv2schema.svg?style=flat-square)](https://rubygems.org/gems/csv2schema)
|
5
|
+
[![License](http://img.shields.io/:license-mit-blue.svg?style=flat-square)](http://theodi.mit-license.org)
|
6
|
+
|
7
|
+
# Csv2schema
|
8
|
+
|
9
|
+
Automagically generate a [JSON table schema](http://specs.frictionlessdata.io/json-table-schema/) file to go with a CSV file. Inspired by Stuart Lowe's [JSON Table Schema Generator](https://odileeds.github.io/JSONSchema/) at [ODI Leeds](https://leeds.theodi.org).
|
10
|
+
|
11
|
+
## Installation
|
12
|
+
|
13
|
+
Add this line to your application's Gemfile:
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
gem 'csv2schema'
|
17
|
+
```
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
|
21
|
+
$ bundle
|
22
|
+
|
23
|
+
Or install it yourself as:
|
24
|
+
|
25
|
+
$ gem install csv2schema
|
26
|
+
|
27
|
+
## Usage
|
28
|
+
|
29
|
+
Require the gem (if you haven't already):
|
30
|
+
|
31
|
+
```ruby
|
32
|
+
require 'csv2schema'
|
33
|
+
```
|
34
|
+
|
35
|
+
Initialise the CSV with a file:
|
36
|
+
|
37
|
+
```ruby
|
38
|
+
csv = Csv2schema::CSV.new(File.open("path/to/file.csv"))
|
39
|
+
```
|
40
|
+
|
41
|
+
Or with a URL:
|
42
|
+
|
43
|
+
```ruby
|
44
|
+
csv = Csv2schema::CSV.new("http://example.org/file.csv")
|
45
|
+
```
|
46
|
+
|
47
|
+
Or with an IO-style object (i.e StringIO):
|
48
|
+
|
49
|
+
```ruby
|
50
|
+
csv = Csv2schema::CSV.new(StringIO.new( my_data_in_a_string ))
|
51
|
+
```
|
52
|
+
|
53
|
+
Then get the schema as a JSON string:
|
54
|
+
|
55
|
+
```ruby
|
56
|
+
csv.schema
|
57
|
+
#=> "{\"fields\":[{\"name\":\"Foo\",\"title\":\"Foo\",\"constraints\":{\"required\":false,\"type\":\"http://www.w3.org/2001/XMLSchema#int\"}},{\"name\":\"Bar\",\"title\":\"Bar\",\"constraints\":{\"required\":true,\"type\":\"http://www.w3.org/2001/XMLSchema#int\"}},{\"name\":\"Baz\",\"title\":\"Baz\",\"constraints\":{\"required\":true,\"type\":\"http://www.w3.org/2001/XMLSchema#int\"}}]}"
|
58
|
+
```
|
59
|
+
|
60
|
+
## Development
|
61
|
+
|
62
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
63
|
+
|
64
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
65
|
+
|
66
|
+
## Contributing
|
67
|
+
|
68
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/theodi/csv2schema. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
69
|
+
|
70
|
+
## License
|
71
|
+
|
72
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "csv2schema"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/csv2schema.gemspec
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'csv2schema/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "csv2schema"
|
8
|
+
spec.version = Csv2schema::VERSION
|
9
|
+
spec.authors = ["pezholio"]
|
10
|
+
spec.email = ["pezholio@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = "Generate a JSON table schema from a CSV file"
|
13
|
+
spec.homepage = "https://github.com/theodi/csv2schema"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
17
|
+
# delete this section to allow pushing this gem to any host.
|
18
|
+
if spec.respond_to?(:metadata)
|
19
|
+
spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
20
|
+
else
|
21
|
+
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
22
|
+
end
|
23
|
+
|
24
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
25
|
+
spec.bindir = "exe"
|
26
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
27
|
+
spec.require_paths = ["lib"]
|
28
|
+
|
29
|
+
spec.add_dependency "csvlint", "~> 0.3.2"
|
30
|
+
|
31
|
+
spec.add_development_dependency "bundler", "~> 1.11"
|
32
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
33
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
34
|
+
spec.add_development_dependency "pry", "~> 0.10.4"
|
35
|
+
end
|
data/lib/csv2schema.rb
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
module Csv2schema
|
2
|
+
class CSV
|
3
|
+
include Csv2schema::Formats
|
4
|
+
include Csv2schema::Required
|
5
|
+
include Csv2schema::Schema
|
6
|
+
|
7
|
+
def initialize(io)
|
8
|
+
@validator = Csvlint::Validator.new(io)
|
9
|
+
@column_headers = get_column_headers
|
10
|
+
apply_formats
|
11
|
+
apply_required
|
12
|
+
end
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
def get_column_headers
|
17
|
+
headers = @validator.data.first
|
18
|
+
Hash[headers.each_with_index.map { |col, i| [col, {'name' => col}] }]
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module Csv2schema
|
2
|
+
module Formats
|
3
|
+
|
4
|
+
def apply_formats
|
5
|
+
@column_headers.each_with_index { |(k,v),i| @column_headers[k]['format'] = formats[i] }
|
6
|
+
end
|
7
|
+
|
8
|
+
private
|
9
|
+
|
10
|
+
def formats
|
11
|
+
@formats ||= begin
|
12
|
+
formats = @validator.instance_variable_get("@formats")
|
13
|
+
|
14
|
+
formats.map do |formats|
|
15
|
+
get_format(formats)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def get_format(candidates)
|
21
|
+
total = candidates.values.reduce(:+)
|
22
|
+
best = :string
|
23
|
+
candidates.each do |k,v|
|
24
|
+
best = k if v > (total * 0.8)
|
25
|
+
end
|
26
|
+
best
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Csv2schema
|
2
|
+
module Required
|
3
|
+
|
4
|
+
def apply_required
|
5
|
+
@column_headers.each_with_index { |(k,v),i| @column_headers[k]['required'] = required[i] }
|
6
|
+
end
|
7
|
+
|
8
|
+
private
|
9
|
+
|
10
|
+
def required
|
11
|
+
@required ||= begin
|
12
|
+
data = @validator.data
|
13
|
+
data.transpose.each_with_index.map do |col|
|
14
|
+
col.select { |c| c.blank? }.count == 0
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module Csv2schema
|
2
|
+
module Schema
|
3
|
+
|
4
|
+
def schema
|
5
|
+
fields = @column_headers.map do |key,col|
|
6
|
+
{
|
7
|
+
name: col['name'],
|
8
|
+
title: col['name'],
|
9
|
+
constraints: {
|
10
|
+
required: col['required'],
|
11
|
+
type: get_type(col['format'])
|
12
|
+
}
|
13
|
+
}
|
14
|
+
end
|
15
|
+
|
16
|
+
{
|
17
|
+
"fields": fields
|
18
|
+
}.to_json
|
19
|
+
end
|
20
|
+
|
21
|
+
def get_type(format)
|
22
|
+
{
|
23
|
+
string: 'http://www.w3.org/2001/XMLSchema#string',
|
24
|
+
numeric: 'http://www.w3.org/2001/XMLSchema#int'
|
25
|
+
}[format]
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
29
|
+
end
|
metadata
ADDED
@@ -0,0 +1,133 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: csv2schema
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- pezholio
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-09-02 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: csvlint
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.3.2
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.3.2
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.11'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.11'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pry
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ~>
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.10.4
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ~>
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.10.4
|
83
|
+
description:
|
84
|
+
email:
|
85
|
+
- pezholio@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- .gitignore
|
91
|
+
- .rspec
|
92
|
+
- .ruby-version
|
93
|
+
- .travis.yml
|
94
|
+
- CODE_OF_CONDUCT.md
|
95
|
+
- Gemfile
|
96
|
+
- LICENSE.txt
|
97
|
+
- README.md
|
98
|
+
- Rakefile
|
99
|
+
- bin/console
|
100
|
+
- bin/setup
|
101
|
+
- csv2schema.gemspec
|
102
|
+
- lib/csv2schema.rb
|
103
|
+
- lib/csv2schema/csv.rb
|
104
|
+
- lib/csv2schema/formats.rb
|
105
|
+
- lib/csv2schema/required.rb
|
106
|
+
- lib/csv2schema/schema.rb
|
107
|
+
- lib/csv2schema/version.rb
|
108
|
+
homepage: https://github.com/theodi/csv2schema
|
109
|
+
licenses:
|
110
|
+
- MIT
|
111
|
+
metadata:
|
112
|
+
allowed_push_host: ! 'TODO: Set to ''http://mygemserver.com'''
|
113
|
+
post_install_message:
|
114
|
+
rdoc_options: []
|
115
|
+
require_paths:
|
116
|
+
- lib
|
117
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ! '>='
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
123
|
+
requirements:
|
124
|
+
- - ! '>='
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: '0'
|
127
|
+
requirements: []
|
128
|
+
rubyforge_project:
|
129
|
+
rubygems_version: 2.4.5
|
130
|
+
signing_key:
|
131
|
+
specification_version: 4
|
132
|
+
summary: Generate a JSON table schema from a CSV file
|
133
|
+
test_files: []
|