module JsonResume
Constants
- VERSION
Public Class Methods
new(json_input, options = {})
click to toggle source
# File lib/json_resume/json_resume.rb, line 5 def new(json_input, options = {}) options = options.each_with_object({}) { |(k, v), memo| memo[k.to_sym] = v } JsonResume::Core.new(json_input, options) end