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.
@@ -1,4 +1,4 @@
1
1
  module HoneyFormat
2
2
  # Gem version
3
- VERSION = '0.12.0'
3
+ VERSION = '0.13.0'
4
4
  end
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.12.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-10 00:00:00.000000000 Z
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: Convert CSV to an array of objects with with ease. Create objects for
98
- each row with methods matching the column names. No dependencies other than Ruby
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/convert_header_value.rb
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: Convert CSV to objects.
159
+ summary: Makes working with CSVs as smooth as honey.
154
160
  test_files: []