yaml_to_csv 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/README.md +33 -0
- data/Rakefile +8 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/yaml_to_csv/version.rb +3 -0
- data/lib/yaml_to_csv.rb +72 -0
- data/yaml_to_csv.gemspec +24 -0
- metadata +98 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 53dc590465610bfd38a9853b8577cc07b3da45a9
|
4
|
+
data.tar.gz: 8329b3f6dc58d53cc38af8c4a8afa7e94788dc54
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: adc2a5850589204af8ce2bc3e12f4cd7fc439dc4fa7b56a6cc564ebc4ea1224aadc40ea7da669b2873ef93420080cba82e560894c3027674374fbd31bd89aaa9
|
7
|
+
data.tar.gz: 8160791fd06437790928832bd971be6e22b863a4cf9d52d8d132f5ead928cbb12cae82e3ccb194158b196e700757178f135c0ee30a1c5fdb5fee4e3ff6728141
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
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 maartencls@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/README.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# YamlToCsv
|
2
|
+
|
3
|
+
Convert YAML to CSV and vice versa
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
```ruby
|
8
|
+
gem 'yaml_to_csv'
|
9
|
+
```
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
See specs for now.
|
14
|
+
|
15
|
+
## Development
|
16
|
+
|
17
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
18
|
+
`rake spec` to run the tests. You can also run `bin/console` for an interactive
|
19
|
+
prompt that will allow you to experiment.
|
20
|
+
|
21
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To
|
22
|
+
release a new version, update the version number in `version.rb`, and then run
|
23
|
+
`bundle exec rake release`, which will create a git tag for the version, push
|
24
|
+
git commits and tags, and push the `.gem` file to
|
25
|
+
[rubygems.org](https://rubygems.org).
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
Bug reports and pull requests are welcome on GitHub at
|
30
|
+
https://github.com/mcls/yaml_to_csv. This project is intended to be a safe,
|
31
|
+
welcoming space for collaboration, and contributors are expected to adhere to
|
32
|
+
the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
33
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "yaml_to_csv"
|
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/lib/yaml_to_csv.rb
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
require "yaml_to_csv/version"
|
2
|
+
require "csv"
|
3
|
+
require "yaml"
|
4
|
+
|
5
|
+
class YamlToCsv
|
6
|
+
DEFAULT_CSV_OPTS = { col_sep: ',' }
|
7
|
+
DEFAULT_MERGE_KEYS = -> (parent, key) { [parent, key].compact.join('.') }
|
8
|
+
DEFAULT_SPLIT_KEYS = -> (composite_key) { composite_key.split('.') }
|
9
|
+
|
10
|
+
attr_reader :csv_opts, :merge_keys, :split_keys
|
11
|
+
|
12
|
+
def initialize(csv_opts: {}, merge_keys: nil, split_keys: nil)
|
13
|
+
@csv_opts = DEFAULT_CSV_OPTS.merge(csv_opts)
|
14
|
+
@merge_keys = merge_keys || DEFAULT_MERGE_KEYS
|
15
|
+
@split_keys = split_keys || DEFAULT_SPLIT_KEYS
|
16
|
+
end
|
17
|
+
|
18
|
+
# @return [String]
|
19
|
+
def yaml_text_to_csv_text(yaml_text)
|
20
|
+
yaml_hash = YAML.load(yaml_text)
|
21
|
+
flat_hash = HashFlattener.new(merge_keys: merge_keys).flatten(yaml_hash)
|
22
|
+
hash_to_csv_string(flat_hash, csv_opts: csv_opts)
|
23
|
+
end
|
24
|
+
|
25
|
+
# @return [Hash]
|
26
|
+
def csv_text_to_yaml_hash(csv_text)
|
27
|
+
csv_arrs = CSV.parse(csv_text, csv_opts)
|
28
|
+
csv_arrs.reduce({}) do |hsh, (composite_key, value)|
|
29
|
+
keys = split_keys.call(composite_key)
|
30
|
+
nested = hsh
|
31
|
+
keys.each do |key|
|
32
|
+
if keys.last == key
|
33
|
+
nested[key] = value
|
34
|
+
else
|
35
|
+
nested[key] ||= {}
|
36
|
+
nested = nested[key]
|
37
|
+
end
|
38
|
+
end
|
39
|
+
hsh
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
protected
|
44
|
+
|
45
|
+
def hash_to_csv_string(hsh, csv_opts: {})
|
46
|
+
CSV.generate(DEFAULT_CSV_OPTS.merge(csv_opts)) do |csv|
|
47
|
+
hsh.each do |key, value|
|
48
|
+
csv << [key, value]
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
class HashFlattener
|
54
|
+
attr_reader :merge_keys
|
55
|
+
|
56
|
+
def initialize(merge_keys:)
|
57
|
+
@merge_keys = merge_keys
|
58
|
+
end
|
59
|
+
|
60
|
+
def flatten(hsh, parent: nil)
|
61
|
+
hsh.reduce({}) do |flat, (key, value)|
|
62
|
+
new_key = merge_keys.call(parent, key)
|
63
|
+
if value.is_a?(Hash)
|
64
|
+
flat.merge!(flatten(value, parent: new_key))
|
65
|
+
else
|
66
|
+
flat[new_key] = value
|
67
|
+
end
|
68
|
+
flat
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
data/yaml_to_csv.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'yaml_to_csv/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "yaml_to_csv"
|
8
|
+
spec.version = YamlToCsv::VERSION
|
9
|
+
spec.authors = ["Maarten Claes"]
|
10
|
+
spec.email = ["maartencls@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Convert YAML to CSV and vice versa}
|
13
|
+
spec.description = %q{Convert YAML to CSV and vice versa}
|
14
|
+
spec.homepage = "https://github.com/mcls/yaml_to_csv"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
+
spec.bindir = "exe"
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
spec.add_development_dependency "rspec", "~> 3.4"
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: yaml_to_csv
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Maarten Claes
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-06-24 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.12'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.12'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.4'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.4'
|
55
|
+
description: Convert YAML to CSV and vice versa
|
56
|
+
email:
|
57
|
+
- maartencls@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- ".rspec"
|
64
|
+
- ".travis.yml"
|
65
|
+
- CODE_OF_CONDUCT.md
|
66
|
+
- Gemfile
|
67
|
+
- README.md
|
68
|
+
- Rakefile
|
69
|
+
- bin/console
|
70
|
+
- bin/setup
|
71
|
+
- lib/yaml_to_csv.rb
|
72
|
+
- lib/yaml_to_csv/version.rb
|
73
|
+
- yaml_to_csv.gemspec
|
74
|
+
homepage: https://github.com/mcls/yaml_to_csv
|
75
|
+
licenses: []
|
76
|
+
metadata: {}
|
77
|
+
post_install_message:
|
78
|
+
rdoc_options: []
|
79
|
+
require_paths:
|
80
|
+
- lib
|
81
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - ">="
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
requirements: []
|
92
|
+
rubyforge_project:
|
93
|
+
rubygems_version: 2.5.1
|
94
|
+
signing_key:
|
95
|
+
specification_version: 4
|
96
|
+
summary: Convert YAML to CSV and vice versa
|
97
|
+
test_files: []
|
98
|
+
has_rdoc:
|