Skip to content

Instantly share code, notes, and snippets.

@mccrory
Created November 20, 2010 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mccrory/708144 to your computer and use it in GitHub Desktop.
Save mccrory/708144 to your computer and use it in GitHub Desktop.
OpenPaaS Code (Alpha) for implementing Service Pricing
def format_price(amount, type, *rest)
case type
when 'flat'
return "$#{amount}/#{rest[0]}"
when 'metered'
raise "Not Implemented"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment