Files
aperonight/app/helpers/application_helper.rb

13 lines
247 B
Ruby
Executable File

module ApplicationHelper
# Convert prince from cents to float
def format_price(cents)
(cents.to_f / 100).round(2)
end
# Include flash message helpers
include FlashMessagesHelper
# Include Stripe helper
include StripeHelper
end