Method: Roby::Application#robots

Defined in:
lib/roby/app.rb

#robotsApp::RobotNames

The robot names configuration

Returns:



929
930
931
932
933
934
935
936
# File 'lib/roby/app.rb', line 929

def robots
    if !@robots
        robots = App::RobotNames.new(options['robots'] || Hash.new)
        robots.strict = !!options['robots']
        @robots = robots
    end
    @robots
end