Method: Waitress::Vhost#libdir

Defined in:
lib/waitress/vhost.rb

#libdir(name) ⇒ Object

Set the directory in which Libraries are contained. Libraries are specially handled by waitress to be loaded into .wrb files and handlers. Default: “libs/” This file will contain your CSS, JS and any other libraries. Bower packages are also supported under this directory (“bower_components”)



113
114
115
# File 'lib/waitress/vhost.rb', line 113

def libdir name
  @libdir = File.expand_path(name)
end