Skip to content

Instantly share code, notes, and snippets.

View sebastiansibelle's full-sized avatar
🎯
Focusing

Sebastian Sibelle sebastiansibelle

🎯
Focusing
View GitHub Profile

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@sebastiansibelle
sebastiansibelle / customer.list_bug.rb
Created September 24, 2014 12:25
An example illustrating the bug in the Customer.list function in a Rails installation.
limit = 5
list = ChargeBee::Customer.list({:limit => limit})
logger.debug "#### First List"
# Retrieves the first list as expected
list.each do |entry|
customer = entry.customer
logger.debug customer.email
end