13 lines
249 B
Ruby
Executable File
13 lines
249 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
|