File: autohook.rb

package info (click to toggle)
ruby-rr 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,436 kB
  • ctags: 1,404
  • sloc: ruby: 11,657; makefile: 5
file content (12 lines) | stat: -rw-r--r-- 227 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
module RR
  class << self
    def autohook
      applicable_adapters.each { |adapter| adapter.load }
      if applicable_adapters.empty?
        puts "No adapters matched!" if RR.debug?
      end
    end
  end
end

RR.autohook