Class: MobyUtil::PluginService

Inherits:
Object
  • Object
show all
Defined in:
lib/tdriver/util/plugin/service.rb

Overview

deprecated plugin service implementation; please use TDriver::PluginService instead of this

Class Method Summary collapse

Class Method Details

.instanceObject

deprecated



304
305
306
307
308
309
310
311
312
313
314
315
# File 'lib/tdriver/util/plugin/service.rb', line 304

def self.instance

  # retrieve caller information
  file, line = caller.first.split(":")

  # show warning
  warn "#{ file }:#{ line } warning: deprecated method MobyUtil::PluginService.instance#method; please use static class TDriver::PluginService#method instead"

  # redirect to new implementation
  TDriver::PluginService

end