Top Level Namespace

Defined Under Namespace

Modules: FileChooser, Mouse, Muter, OCR, SensibleSwing Classes: Blanker, DriveInfo, EdlParser, KeyboardInput, MencoderWrapper, OverLayer, ScreenTracker, Storage, String, Symbol, Time, VLCProgrammer

Instance Method Summary collapse

Instance Method Details

#add_any_bundled_gems_to_load_pathObject



2
3
4
5
6
7
8
9
10
11
12
# File 'lib/add_any_bundled_gems_to_load_path.rb', line 2

def add_any_bundled_gems_to_load_path
  raise 'no vendor dir?' unless File.directory? 'vendor'
  if File.directory? 'vendor/cache'
    Dir['vendor/cache/**/lib'].each{|lib_dir|
      $: << lib_dir
    }
  else
    require 'rubygems'
    # they'll need imagemagick installed, as well, currently
  end
end