mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-05 00:02:50 -04:00
* This error message said "Cards cannot be retrieved without a customer ID. Retrieve a card using customer.cards.retrieve('card_id')" This is incorrect. `customer.cards` throws a `NoMethodError: undefined method `cards' for #<Stripe::Customer:0x0000010c8bdca8>`. * The correct method is `Stripe::Customer#sources`, and this fixes the error message.