module Mongrel::Gems

Public Instance Methods

require(library, version = nil) click to toggle source
# File lib/mongrel/gems.rb, line 5
def require(library, version = nil)
  begin
    Kernel.require library
                        rescue LoadError, RuntimeError
      # puts "** #{library.inspect} could not be loaded" unless library == "mongrel_experimental"
  end  
end