Skip to content

Instantly share code, notes, and snippets.

@samueljoli
Created January 30, 2017 17:56
Show Gist options
  • Save samueljoli/dd23b944348c300124630c623e52735a to your computer and use it in GitHub Desktop.
Save samueljoli/dd23b944348c300124630c623e52735a to your computer and use it in GitHub Desktop.
#ruby
case line
when /qty: (\d+)/)
this.quantity = $1
when /size: (\d+)x(\d)/
this.width = $1
this.height = $2
#...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment