toml-rb 2.0.0 → 2.0.1

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/toml-rb/dumper.rb +1 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e2a2f012c91d9664b1c1656ed84aa47e1011223a2d7bad0504fe809cf71a7ea
4
- data.tar.gz: 7db3fb54e407e205089396c79cd2f418ed54ffd88ad3d5b03e404132f2ec9756
3
+ metadata.gz: c4a5e20dd7cac0cc12a41655ae0e87a0161810ae9bcf960f6d037c3669395f09
4
+ data.tar.gz: c9c1d6143bdef7efe408b857d6395334b580ea6ae28ee14ca352406e903bf034
5
5
  SHA512:
6
- metadata.gz: 56ae22471a087c85acd872a7f7f354c4cdf0c430654d8bdfc277911015a94312960e22b82f79f7f772f62d0e73a8bb3faab8f2b7b7cc688a75343ea5fbef9fa9
7
- data.tar.gz: 72d80c5c8713fd40d50e9863d3ea684c0999c991c050a4db0ba49f9a9db5fe0c6f373646b4256ca62127be54626582ba15ac2e492da0930103f9d62dbf4681dc
6
+ metadata.gz: 8e5adcce7ccb5fdfda647a286718d992c3b58f54094807fced8310433a2bc5bd2e40fa4275b4536c523dd512ad99a6c5aa9be6443de5a068c8b6c5c88cc591d9
7
+ data.tar.gz: e8e7883ea79241792f74b45619d7fe4c540fced4523ed2f7e325b93702cd3380159ff08d17a08f21b7bf3e4454a3b7e26a93f24ac3cb48045f9a079374db22dc
data/README.md CHANGED
@@ -8,7 +8,7 @@ toml-rb
8
8
 
9
9
  A [TOML](https://github.com/toml-lang/toml) parser using [Citrus](http://mjackson.github.io/citrus) library.
10
10
 
11
- TOML specs supported: `0.4.0`
11
+ TOML specs supported: `0.5.0`
12
12
 
13
13
  Installation
14
14
  ------------
@@ -94,7 +94,7 @@ module TomlRB
94
94
  elsif obj.is_a? Regexp
95
95
  obj.inspect.inspect
96
96
  elsif obj.is_a? String
97
- obj.inspect.gsub(/\\(#[@{])/, '\1')
97
+ obj.inspect.gsub(/\\(#[$@{])/, '\1')
98
98
  else
99
99
  obj.inspect
100
100
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: toml-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Emiliano Mancuso
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-10-25 00:00:00.000000000 Z
12
+ date: 2019-11-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: citrus
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.0.3
78
+ rubygems_version: 3.0.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Toml parser in ruby, for ruby.