Skip to content

Instantly share code, notes, and snippets.

@christopherslee
Created August 5, 2013 03:34
Show Gist options
  • Save christopherslee/6153296 to your computer and use it in GitHub Desktop.
Save christopherslee/6153296 to your computer and use it in GitHub Desktop.
Intro to DSLs - Part 1 Answer
# lib/part_2/customer.rb
class Customer
attr_accessor :balance
def good_standing?
balance >= 0
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment