module JSON::Minify

Constants

VERSION

Public Class Methods

included(mod) click to toggle source
# File lib/json/minify.rb, line 7
def self.included(mod)
  mod.send(:extend, self)
end

Public Instance Methods

minify(str) click to toggle source
# File lib/json/minify.rb, line 11
def minify(str)
  ss = StringScanner.new(str)
  buf = ''

  until ss.eos?
    # Remove whitespace
    if s = ss.scan(/\s+/)

    # Scan punctuation
    elsif s = ss.scan(/[{},:\]\[]/)
      buf << s

    # Scan strings
    elsif s = ss.scan(/""|(".*?[^\\])?"/)
      buf << s

    # Scan reserved words
    elsif s = ss.scan(/(true|false|null)/)
      buf << s

    # Scan numbers
    elsif s = ss.scan(/-?\d+([.]\d+)?([eE][-+]?[0-9]+)?/)
      buf << s

    # Remove C++ style comments
    elsif s = ss.scan(%r{//})
      ss.scan_until(/(\r?\n|$)/)

    # Remove C style comments
    elsif s = ss.scan(%r{/[*]})
      ss.scan_until(%r{[*]/}) || raise(SyntaxError, "Unterminated /*...*/ comment - #{ss.rest}")

    # Anything else is invalid JSON
    else
      raise SyntaxError, "Unable to pre-scan string: #{ss.rest}"
    end
  end
  buf
end
minify_parse(buf) click to toggle source
# File lib/json/minify.rb, line 51
def minify_parse(buf)
  JSON.parse(minify(buf))
end