flat_file 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 86ebfb9c9a32b6ffbd25f9c08261f5c5fbc88fb3e88a7fe4cfff5b5ff85cb563
4
- data.tar.gz: 2d66ef03bf39bb5477a786a8d9d03004a34a81103b2419f2c1e13073f37f0a41
3
+ metadata.gz: 9bc528e9efe9c5f87142e233275d60937dc5e31392f8e65d6c8a9353f7aa96bf
4
+ data.tar.gz: 8451337cf9d0b16eb53990af7cb497f25533f64e1e8e6284215b1c6ee3c4ae57
5
5
  SHA512:
6
- metadata.gz: c288abb20aa30c81b4055c041a7c5b0395b53e31005f25708a97fb024d317f40c22c5371dba21a6d0bdb13269775b6352495f83e978bda2d81d4400f8b5f3acb
7
- data.tar.gz: 282b15592afed0928ebf109bdca61f3833edc7e0059f68a595d48424f8abfc1e1396f3e9fcadbeb1c8ee5b70f850f62d5aa3367bbaa7743c5a5585a334717bd3
6
+ metadata.gz: 2fb7f769331f56898f00ab8a92a713ac13e1310e0c5127fe13dc596b16ed96d10cbb7e63b3b2239cab0cafbbc1e10df39593ee0ab23d8d5e1f9676fa56f42093
7
+ data.tar.gz: 4f1a5dc7f5bedbd14b951bf4e7913e080e6b693bc522e6c7731e052ec52d00c9118b2970fc76b1556718c49b41e8db7faf13a509a8f3ff92bd3314fe84037cdd
@@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  <!-- git log $(git describe --tags --abbrev=0)..HEAD --oneline -->
9
9
 
10
- ## 0.2.0 (2020-09-09)
10
+ ## 0.3.0 (2020-09-09)
11
+
12
+ - Add inch.ci badge to readme
13
+ - Fix QSV test
11
14
 
12
- ### Changed
15
+ ## 0.2.0 (2020-09-09)
13
16
 
14
17
  - Update readme
15
18
  - Add Changelog
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- flat_file (0.2.0)
4
+ flat_file (0.3.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -2,13 +2,17 @@
2
2
 
3
3
  [![Gem](https://img.shields.io/gem/v/flat_file)][rubygems]
4
4
  [![Build Status](https://travis-ci.org/tcd/flat_file.svg?branch=master)][travis-ci]
5
+ [![Coverage Status](https://coveralls.io/repos/github/tcd/flat_file/badge.svg?branch=master)][coveralls]
6
+ [![YARD Docs](http://inch-ci.org/github/tcd/flat_file.svg?branch=master)][inch-ci]
5
7
  [![License](https://img.shields.io/github/license/tcd/flat_file)][license]
6
8
  [![Documentation](http://img.shields.io/badge/docs-rubydoc.info-blue.svg)][docs]
7
9
 
8
10
  [rubygems]: https://rubygems.org/gems/flat_file
9
11
  [travis-ci]: https://travis-ci.org/tcd/flat_file
12
+ [coveralls]: https://coveralls.io/github/tcd/flat_file?branch=master
13
+ [inch-ci]: https://coveralls.io/github/tcd/flat_file?branch=master
10
14
  [license]: https://github.com/tcd/flat_file/blob/master/LICENSE.txt
11
- [docs]: https://www.rubydoc.info/gems/flat_file/0.2.0
15
+ [docs]: https://www.rubydoc.info/gems/flat_file/0.3.0
12
16
 
13
17
  Convenience methods for reading CSV, TSV, & JSON files.
14
18
 
@@ -35,7 +35,7 @@ module FlatFile
35
35
  # @param _field_info [Hash]
36
36
  # @return [Object]
37
37
  def self.parse_postico_json(value, _field_info)
38
- return value if value.blank?()
38
+ return value if value.nil?()
39
39
  return value if value.length == 0
40
40
  return value unless value[0] == "{"
41
41
  return ::JSON.parse(value)
@@ -1,3 +1,3 @@
1
1
  module FlatFile
2
- VERSION = "0.2.0".freeze()
2
+ VERSION = "0.3.0".freeze()
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flat_file
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Clay Dunston
@@ -141,7 +141,7 @@ metadata:
141
141
  homepage_uri: https://github.com/tcd/flat_file
142
142
  source_code_uri: https://github.com/tcd/flat_file
143
143
  changelog_uri: https://github.com/tcd/flat_file/blob/master/CHANGELOG.md
144
- documentation_uri: https://www.rubydoc.info/gems/flat_file/0.2.0
144
+ documentation_uri: https://www.rubydoc.info/gems/flat_file/0.3.0
145
145
  yard.run: yri
146
146
  post_install_message:
147
147
  rdoc_options: []