This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'growl' | |
module Jekyll | |
class GrowlPreHook < Hook | |
safe false | |
sequence :pre | |
def run(site) | |
Growl.notify 'Building...', :title => 'Jekyll' | |
end | |
end | |
class GrowlPostHook < Hook | |
safe false | |
sequence :post | |
def run(site) | |
Growl.notify 'Build complete', :title => 'Jekyll' | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We'd like to take advantage of Jekyll's new plugin architecture instead of maintaining a fork. Unfortunately, it's not possible to have growl notifications behave in the same way without monkey patching generator plugins.
I've pushed an experimental branch which adds pre-hook, in-hook and post-hook plugin support while preserving compatibility with existing Generators. It's mostly proof of concept, but I think it's a step in the right direction if it can be merged upstream.