# File lib/rufus/json.rb, line 111
  def self.backend= (b)

    if b.is_a?(Symbol)
      b = { :yajl => YAJL, :json => JSON, :active => ACTIVE, :none => NONE }[b]
    end

    @backend = b
  end