Method: ArticleJSON::Article.from_json

Defined in:
lib/article_json/article.rb

.from_json(json) ⇒ ArticleJSON::Article

Build a new article from JSON (like the one generated by #to_json)



130
131
132
# File 'lib/article_json/article.rb', line 130

def from_json(json)
  from_hash(JSON.parse(json, symbolize_names: true))
end