toml-rb 1.1.1 → 1.1.2
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.
- checksums.yaml +4 -4
 - data/README.md +5 -6
 - data/lib/toml-rb/grammars/array.citrus +1 -1
 - data/test/grammar_test.rb +1 -1
 - data/toml-rb.gemspec +2 -1
 - metadata +4 -4
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 1ef52970c82352fb2fa2fedeca2d023122c6b6db
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: c9ea0ca9350b7b7ae41ee91a9f135330d51aad74
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 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.  
     | 
| 
       73 
     | 
    
         
            -
            3.  
     | 
| 
       74 
     | 
    
         
            -
            4.  
     | 
| 
       75 
     | 
    
         
            -
            5.  
     | 
| 
       76 
     | 
    
         
            -
            6.  
     | 
| 
       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 
     | 
    
         
             
            -------
         
     | 
    
        data/test/grammar_test.rb
    CHANGED
    
    
    
        data/toml-rb.gemspec
    CHANGED
    
    | 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            Gem::Specification.new do |s|
         
     | 
| 
       2 
2 
     | 
    
         
             
              s.name        = 'toml-rb'
         
     | 
| 
       3 
     | 
    
         
            -
              s.version     = '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. 
     | 
| 
      
 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:  
     | 
| 
      
 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: ' 
     | 
| 
      
 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. 
     | 
| 
      
 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.
         
     |