Skip to content

Instantly share code, notes, and snippets.

@amirnissim
Created July 7, 2016 09:22
Show Gist options
  • Save amirnissim/ac57eefd3994c7386691a94f3bc4ebbe to your computer and use it in GitHub Desktop.
Save amirnissim/ac57eefd3994c7386691a94f3bc4ebbe to your computer and use it in GitHub Desktop.
Sample Middleman extension
class MyExtension < Middleman::Extension
def initialize(app, options_hash={}, &block)
puts "MyExtension: init"
super
end
def after_configuration
puts "MyExtension: after_configuration"
end
end
::Middleman::Extensions.register :my_extension, MyExtension
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment