Skip to content

Instantly share code, notes, and snippets.

@npverni
Created March 24, 2010 19:10
Show Gist options
  • Select an option

  • Save npverni/342662 to your computer and use it in GitHub Desktop.

Select an option

Save npverni/342662 to your computer and use it in GitHub Desktop.
ruby-1.8.7-p249 > s = Chargify::Subscription.find(:first)
ruby-1.8.7-p249 > s.credit_card.expiration_year
=> 2020
ruby-1.8.7-p249 > s.credit_card_attributes = {:expiration_year => "2014"}
ruby-1.8.7-p249 > s.save
ruby-1.8.7-p249 > s.reload
ruby-1.8.7-p249 > s.credit_card.expiration_year
=> 2014
ruby-1.8.7-p249 > s = Chargify::Subscription.find(:first)
ruby-1.8.7-p249 > s.credit_card.expiration_year
=> 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment