Skip to content

Instantly share code, notes, and snippets.

@barunio
Created September 16, 2011 17:35
Show Gist options
  • Save barunio/1222637 to your computer and use it in GitHub Desktop.
Save barunio/1222637 to your computer and use it in GitHub Desktop.
building types
self.building_type =
if n_apartments < 5 then Z::MULTIFAMILY
elsif n_stories < 4 then Z::LOWRISE
elsif n_stories < 7 then Z::MIDRISE
elsif n_stories > 6 then Z::HIGHRISE
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment