Class: EventWatcherForGem

Inherits:
Object
  • Object
show all
Includes:
EventBus
Defined in:
lib/a-core.rb

Instance Method Summary collapse

Methods included from EventBus

#attach_listener, #broadcast_event, #detach_listener, #process_event

Constructor Details

#initialize(_event, _details) ⇒ EventWatcherForGem

Returns a new instance of EventWatcherForGem.



2238
2239
2240
2241
2242
2243
# File 'lib/a-core.rb', line 2238

def initialize(_event, _details)
  @event=_event
  @details=_details
  enhance
  Arcadia.attach_listener(self, _event)
end

Instance Method Details

#enhanceObject



2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
# File 'lib/a-core.rb', line 2244

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