rbon 0.0.210120 → 0.1.210123

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/rbon.rb +1 -1
  4. data/lib/rbon/load.rb +2 -2
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e1da49718259949517ccc8117bed23b712fc28eabcd4a7a61b6fa4fbcc5d5f5e
4
- data.tar.gz: 0ff78b0a378228a8d3853fd1c29b0e28196f571ae7cdeb2801e5ec974ac769d8
3
+ metadata.gz: f286a21f41a0db01032f1210bc425d643f7559b6300b7148b225623f8a5aa55f
4
+ data.tar.gz: 8bc8628e5f53c0970b58a6eb72f264329229dda27fea523c3374103b525e683c
5
5
  SHA512:
6
- metadata.gz: c6f1bcffd0bd56eaf7a940f9b785598d04a7e409b9653b554967fe327202558f1a4b689f397eae1a52943e415496f45d6b49eacc9c61bb15f6cbc0439c7f695d
7
- data.tar.gz: e2abefd3d9dd734215a64e90e6cb1a9a8e921700ac88759dfb843757eddf99405473dd244ac95c38cac7463ed2428fae07e19bef976591356ba5b8e17bdccac4
6
+ metadata.gz: 52e3a437c7cae63decfc0d0ae5f0aa3e6db071521437b2072b7b6368e2f8a1523bfab893a40571ff8bdd2dc8a2077be71ede43fa4add89b2fc84affa6ef9740f
7
+ data.tar.gz: 7c71efa7c40cf36eff21a1e8b5bd6a573b4b582b19519c5e0ebf800aad3beff085123bde50a6981d8d398dd62af3ef4c8108aa7dd1eed74c24e2b738e062f35a
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # RBON
2
2
 
3
- * [VERSION 0.0.210120](https://github.com/carlosjhr64/rbon/releases)
3
+ * [VERSION 0.1.210123](https://github.com/carlosjhr64/rbon/releases)
4
4
  * [github](https://www.github.com/carlosjhr64/rbon)
5
5
  * [rubygems](https://rubygems.org/gems/rbon)
6
6
 
@@ -1,6 +1,6 @@
1
1
  require 'stringio'
2
2
  module RBON
3
- VERSION = '0.0.210120'
3
+ VERSION = '0.1.210123'
4
4
  require 'rbon/dump'
5
5
  require 'rbon/load'
6
6
 
@@ -54,9 +54,9 @@ class Load
54
54
  def readlines
55
55
  case @io
56
56
  when String
57
- @io = @io.lines.map(&:strip)
57
+ @io = @io.lines.map(&:strip).reject{_1.start_with? '#'}
58
58
  when IO
59
- @io = @io.readlines.map(&:strip)
59
+ @io = @io.readlines.map(&:strip).reject{_1.start_with? '#'}
60
60
  else
61
61
  raise TypeError, "RBON#load: Need IO or String, got #{@io.class}."
62
62
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.210120
4
+ version: 0.1.210123
5
5
  platform: ruby
6
6
  authors:
7
7
  - carlosjhr64
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-20 00:00:00.000000000 Z
11
+ date: 2021-01-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  RBON is not JSON!