Skip to content

Instantly share code, notes, and snippets.

Created May 17, 2012 06:25
Show Gist options
  • Save anonymous/7a7641825253fd92ca56 to your computer and use it in GitHub Desktop.
Save anonymous/7a7641825253fd92ca56 to your computer and use it in GitHub Desktop.
def select
x = OpenStruct.new
x.id = 1
x.msisdn = 9446981674
x.circle = 'kl'
x
end
result = select
result.msisdn
#=> 9446981674
result.id
#=> 1
result.circle
#=> 'kl'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment