Class: EventWatcherForGem
Instance Method Summary collapse
- #enhance ⇒ Object
-
#initialize(_event, _details) ⇒ EventWatcherForGem
constructor
A new instance of EventWatcherForGem.
Methods included from EventBus
#attach_listener, #broadcast_event, #detach_listener, #process_event
Constructor Details
#initialize(_event, _details) ⇒ EventWatcherForGem
Returns a new instance of EventWatcherForGem.
1820 1821 1822 1823 1824 1825 |
# File 'lib/a-core.rb', line 1820 def initialize(_event, _details) @event=_event @details=_details enhance Arcadia.attach_listener(self, _event) end |
Instance Method Details
#enhance ⇒ Object
1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 |
# File 'lib/a-core.rb', line 1826 def enhance implementation=%Q{ class << self def #{_method_name(@event, 'before')}(_event) _event.break new_event = Arcadia.process_event(NeedRubyGemWizardEvent.new(self, @details)) if new_event && new_event.results ok=new_event.results[0].installed _event.break if !ok end end end } eval(implementation) end |