class Twofishes::Result

Public Class Methods

from_response(response) click to toggle source
# File lib/twofishes/result.rb, line 4
def self.from_response(response)
  response.interpretations.map do |interpretation|
    new(interpretation)
  end
end