toml-rb 1.1.1 → 1.1.2

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
  SHA1:
3
- metadata.gz: f6b3502619355ff2fd40b540dbf6a9bdc0afe3db
4
- data.tar.gz: cb932bcb0e881fbb28100628193f058dbd805df1
3
+ metadata.gz: 1ef52970c82352fb2fa2fedeca2d023122c6b6db
4
+ data.tar.gz: c9ea0ca9350b7b7ae41ee91a9f135330d51aad74
5
5
  SHA512:
6
- metadata.gz: 597976a68218ac52452905864869848b43974ba6dc9af205a08984ae30a829367c3b61d34ec8f8264b8328582dc9731b749617b109d8d2fdc9476944bf30714d
7
- data.tar.gz: d8362d0e3a01c1d66cbc7a63b378626d35083ae3a68e889fa8ec52ee6ea967f2d542c518bc2eea68c59c3cb84fbed09a23d257d6ff2d583fdbdaecd40e836a3e
6
+ metadata.gz: a323eeb7e8d9cce983b7ce35897bb9583f164213a45175a91724a9b02743e567c9576ba8753545fe73edd09335d68a1dcc4a34d33dd9f03f91bc0bce9e9a929f
7
+ data.tar.gz: e5091b85b319f06e742da736213a8586b89dc9f96f4cd41de565eb23e63169d7db6b49922e663c44cf19f0087b9e87ea0021bb0a897bea7f4c528ff3f90707b9
data/README.md CHANGED
@@ -69,12 +69,11 @@ Contributing
69
69
  ------------
70
70
 
71
71
  1. Fork it
72
- 2. Bundle it `$ dep install` (install [dep](https://github.com/cyx/dep) if you don't have it)
73
- 3. Create your feature branch `git checkout -b my-new-feature`
74
- 4. Add tests and commit your changes `git commit -am 'Add some feature'`
75
- 5. Run tests `$ rake`
76
- 6. Push the branch `git push origin my-new-feature`
77
- 7. Create new Pull Request
72
+ 2. Create your feature branch `git checkout -b my-new-feature`
73
+ 3. Add tests and commit your changes `git commit -am 'Add some feature'`
74
+ 4. Run tests `$ rake`
75
+ 5. Push the branch `git push origin my-new-feature`
76
+ 6. Create new Pull Request
78
77
 
79
78
  License
80
79
  -------
@@ -6,7 +6,7 @@ grammar TomlRB::Arrays
6
6
  end
7
7
 
8
8
  rule array_comments
9
- (indent? comment* indent?)
9
+ (indent? (comment indent?)*)
10
10
  end
11
11
 
12
12
  rule elements
@@ -4,7 +4,7 @@ require_relative 'helper'
4
4
  class GrammarTest < Minitest::Test
5
5
  def test_comment
6
6
  match = TomlRB::Document.parse(' # A comment', root: :comment)
7
- assert_equal(nil, match.value)
7
+ assert_nil(match.value)
8
8
  end
9
9
 
10
10
  def test_key
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'toml-rb'
3
- s.version = '1.1.1'
3
+ s.version = '1.1.2'
4
4
  s.date = Time.now.strftime('%Y-%m-%d')
5
5
  s.summary = 'Toml parser in ruby, for ruby.'
6
6
  s.description = 'A Toml parser using Citrus parsing library. '
@@ -18,5 +18,6 @@ Gem::Specification.new do |s|
18
18
  'test/*.*',
19
19
  ]
20
20
 
21
+ s.required_ruby_version = '>= 1.9'
21
22
  s.add_dependency 'citrus', '~> 3.0', '> 3.0'
22
23
  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: 1.1.1
4
+ version: 1.1.2
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: 2017-11-25 00:00:00.000000000 Z
12
+ date: 2018-08-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: citrus
@@ -77,7 +77,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
77
77
  requirements:
78
78
  - - ">="
79
79
  - !ruby/object:Gem::Version
80
- version: '0'
80
+ version: '1.9'
81
81
  required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - ">="
@@ -85,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
85
  version: '0'
86
86
  requirements: []
87
87
  rubyforge_project:
88
- rubygems_version: 2.6.12
88
+ rubygems_version: 2.6.14.1
89
89
  signing_key:
90
90
  specification_version: 4
91
91
  summary: Toml parser in ruby, for ruby.