Method: Book#convert
- Defined in:
- lib/iatelier/models/book.rb
#convert(string) ⇒ Object
119 120 121 122 123 124 125 |
# File 'lib/iatelier/models/book.rb', line 119 def convert string if string.kind_of? String require 'json' return JSON.parse(string); end return string; end |