# File lib/radius/parser.rb, line 16 def initialize(context = Context.new, options = {}) if context.kind_of?(Hash) and options.empty? options = context context = options[:context] || options['context'] || Context.new end options = Utility.symbolize_keys(options) @context = context @tag_prefix = options[:tag_prefix] || 'radius' end