json-jruby 1.1.6-universal-java-1.5 → 1.1.7-universal-java-1.5
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.
- data/lib/json/ext/generator.jar +0 -0
- data/lib/json/ext/parser.jar +0 -0
- data/lib/json/pure/parser.rb +3 -1
- data/lib/json/version.rb +1 -1
- metadata +2 -2
    
        data/lib/json/ext/generator.jar
    CHANGED
    
    | Binary file | 
    
        data/lib/json/ext/parser.jar
    CHANGED
    
    | Binary file | 
    
        data/lib/json/pure/parser.rb
    CHANGED
    
    | @@ -6,9 +6,11 @@ module JSON | |
| 6 6 | 
             
                # into a Ruby data structure.
         | 
| 7 7 | 
             
                class Parser < StringScanner
         | 
| 8 8 | 
             
                  STRING                = /" ((?:[^\x0-\x1f"\\] |
         | 
| 9 | 
            +
                                               # escaped special characters:
         | 
| 9 10 | 
             
                                              \\["\\\/bfnrt] |
         | 
| 10 11 | 
             
                                              \\u[0-9a-fA-F]{4} |
         | 
| 11 | 
            -
             | 
| 12 | 
            +
                                               # match all but escaped special characters:
         | 
| 13 | 
            +
                                              \\[\x20-\x21\x23-\x2e\x30-\x5b\x5d-\x61\x63-\x65\x67-\x6d\x6f-\x71\x73\x75-\xff])*)
         | 
| 12 14 | 
             
                                          "/nx
         | 
| 13 15 | 
             
                  INTEGER               = /(-?0|-?[1-9]\d*)/
         | 
| 14 16 | 
             
                  FLOAT                 = /(-?
         | 
    
        data/lib/json/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -5,9 +5,9 @@ homepage: http://rubyforge.org/projects/json-jruby/ | |
| 5 5 | 
             
            executables: []
         | 
| 6 6 |  | 
| 7 7 | 
             
            version: !ruby/object:Gem::Version 
         | 
| 8 | 
            -
              version: 1.1. | 
| 8 | 
            +
              version: 1.1.7
         | 
| 9 9 | 
             
            post_install_message: 
         | 
| 10 | 
            -
            date: 2009- | 
| 10 | 
            +
            date: 2009-07-03 03:00:00 +00:00
         | 
| 11 11 | 
             
            files: 
         | 
| 12 12 | 
             
            - lib/json.rb
         | 
| 13 13 | 
             
            - lib/json/version.rb
         |