mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
26 lines
513 B
Ruby
26 lines
513 B
Ruby
|
class ExtensionOne < ::Middleman::Extension
|
||
|
def initialize(app, options_hash={})
|
||
|
super
|
||
|
|
||
|
after_extension_activated :extension_two do
|
||
|
app.set :extension_two_was_activated, true
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
ExtensionOne.register
|
||
|
|
||
|
class ExtensionTwo < ::Middleman::Extension
|
||
|
def initialize(app, options_hash={})
|
||
|
super
|
||
|
|
||
|
after_extension_activated :extension_one do
|
||
|
app.set :extension_one_was_activated, true
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
ExtensionTwo.register
|
||
|
|
||
|
activate :extension_one
|
||
|
activate :extension_two
|