class Finleap::Customers::Data

Public Class Methods

all() click to toggle source
# File lib/finleap/customers/data.rb, line 6
def self.all
  IO.foreach('fixtures/finleap-connect-customers.json').map do |row|
    JSON.parse(row)
  end
end