module HyperThread

I basically was refactoring the ThreadPool in BetterCap and made this.

Constants

VERSION

Public Class Methods

easter_egg() click to toggle source
# File lib/hyper_thread.rb, line 14
def self.easter_egg
  require 'lolize/auto'
rescue
  raise "Please install lolize!\n$ gem install lolize"
end
pool() click to toggle source
# File lib/hyper_thread.rb, line 20
def self.pool
  Pool
end
thread() click to toggle source
# File lib/hyper_thread.rb, line 24
def self.thread
  HThread
end