Skip to content

Instantly share code, notes, and snippets.

View kreynolds's full-sized avatar

Kelley Reynolds kreynolds

View GitHub Profile
@kreynolds
kreynolds / gist:a129f5bcb84a8cf21d79
Last active August 29, 2015 14:25
ActiveSupport/Rails Stripe Instrumentation
# Define some unobtrusive instrumentation
module Stripe
module Instrumentation
module Collection
def all(*args)
ActiveSupport::Notifications.instrument("stripe.#{collection_type}.list") { super }
end
def create(*args)
ActiveSupport::Notifications.instrument("stripe.#{collection_type}.create") { super }