honey_format 0.12.0 → 0.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/LICENSE.txt +1 -1
- data/README.md +184 -66
- data/bin/benchmark +23 -52
- data/exe/honey_format +20 -59
- data/honey_format.gemspec +2 -2
- data/lib/honey_format.rb +31 -0
- data/lib/honey_format/cli/benchmark_cli.rb +124 -0
- data/lib/honey_format/cli/cli.rb +81 -0
- data/lib/honey_format/cli/result_writer.rb +38 -0
- data/lib/honey_format/configuration.rb +26 -0
- data/lib/honey_format/csv.rb +49 -52
- data/lib/honey_format/errors.rb +6 -2
- data/lib/honey_format/header.rb +27 -29
- data/lib/honey_format/{convert_header_value.rb → header_column_converter.rb} +9 -6
- data/lib/honey_format/matrix.rb +90 -0
- data/lib/honey_format/row.rb +1 -1
- data/lib/honey_format/row_builder.rb +27 -6
- data/lib/honey_format/rows.rb +12 -5
- data/lib/honey_format/value_converter.rb +112 -0
- data/lib/honey_format/version.rb +1 -1
- metadata +12 -6
data/lib/honey_format/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: honey_format
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Burenstam
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-06-
|
11
|
+
date: 2018-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -94,8 +94,8 @@ dependencies:
|
|
94
94
|
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
|
-
description:
|
98
|
-
|
97
|
+
description: Proper objects for CSV headers and rows, convert column values, filter
|
98
|
+
columns and rows, small(-ish) perfomance overhead, no dependencies other than Ruby
|
99
99
|
stdlib.
|
100
100
|
email:
|
101
101
|
- burenstam@gmail.com
|
@@ -119,13 +119,19 @@ files:
|
|
119
119
|
- exe/honey_format
|
120
120
|
- honey_format.gemspec
|
121
121
|
- lib/honey_format.rb
|
122
|
-
- lib/honey_format/
|
122
|
+
- lib/honey_format/cli/benchmark_cli.rb
|
123
|
+
- lib/honey_format/cli/cli.rb
|
124
|
+
- lib/honey_format/cli/result_writer.rb
|
125
|
+
- lib/honey_format/configuration.rb
|
123
126
|
- lib/honey_format/csv.rb
|
124
127
|
- lib/honey_format/errors.rb
|
125
128
|
- lib/honey_format/header.rb
|
129
|
+
- lib/honey_format/header_column_converter.rb
|
130
|
+
- lib/honey_format/matrix.rb
|
126
131
|
- lib/honey_format/row.rb
|
127
132
|
- lib/honey_format/row_builder.rb
|
128
133
|
- lib/honey_format/rows.rb
|
134
|
+
- lib/honey_format/value_converter.rb
|
129
135
|
- lib/honey_format/version.rb
|
130
136
|
homepage: https://github.com/buren/honey_format
|
131
137
|
licenses:
|
@@ -150,5 +156,5 @@ rubyforge_project:
|
|
150
156
|
rubygems_version: 2.7.6
|
151
157
|
signing_key:
|
152
158
|
specification_version: 4
|
153
|
-
summary:
|
159
|
+
summary: Makes working with CSVs as smooth as honey.
|
154
160
|
test_files: []
|