class Luban::Deployment::Applications::Rack::Configurator
Public Instance Methods
exclude_template?(template)
click to toggle source
Calls superclass method
# File lib/luban/deployment/applications/rack/configurator.rb, line 9 def exclude_template?(template) super or web_servers_unused.any? { |w| File.basename(template) =~ /^#{w}\./ } end
Protected Instance Methods
init()
click to toggle source
Calls superclass method
Luban::Deployment::Applications::Rack::WebServer#init
# File lib/luban/deployment/applications/rack/configurator.rb, line 15 def init super set_web_server_options unless task.opts.release.nil? end
web_server_module(path)
click to toggle source
Calls superclass method
Luban::Deployment::Applications::Rack::WebServer#web_server_module
# File lib/luban/deployment/applications/rack/configurator.rb, line 20 def web_server_module(path) @web_server_module ||= super.const_get('Common') end