diff options
author | Tim Smith <tsmith@chef.io> | 2019-01-16 09:48:44 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2019-01-16 09:48:44 -0800 |
commit | aafb78cee696ac14f7bc1aff2945ddc747db46c1 (patch) | |
tree | e7d6fa87243bf3aa4823ab0a836d7c84b24b758a /chef-config | |
parent | c86f10dfb9c898874a58cff92804ef437e3e8e98 (diff) | |
download | chef-aafb78cee696ac14f7bc1aff2945ddc747db46c1.tar.gz |
Add a bit more yard to chef-config/configyard
Adding it as I read through the classes.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'chef-config')
-rw-r--r-- | chef-config/lib/chef-config/config.rb | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/chef-config/lib/chef-config/config.rb b/chef-config/lib/chef-config/config.rb index 6150bbfea9..a12a44a075 100644 --- a/chef-config/lib/chef-config/config.rb +++ b/chef-config/lib/chef-config/config.rb @@ -4,7 +4,7 @@ # Author:: AJ Christensen (<aj@chef.io>) # Author:: Mark Mzyk (<mmzyk@chef.io>) # Author:: Kyle Goodwin (<kgoodwin@primerevenue.com>) -# Copyright:: Copyright 2008-2018, Chef Software Inc. +# Copyright:: Copyright 2008-2019, Chef Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -85,10 +85,13 @@ module ChefConfig end end + # @param name [String] + # @param file_path [String] def self.add_formatter(name, file_path = nil) formatters << [name, file_path] end + # @param logger [String] def self.add_event_logger(logger) event_handlers << logger end @@ -125,18 +128,21 @@ module ChefConfig default :formatters, [] + # @param uri [String] the URI to validate + # + # @return [Boolean] is the URL valid def self.is_valid_url?(uri) url = uri.to_s.strip /^http:\/\// =~ url || /^https:\/\// =~ url || /^chefzero:/ =~ url end + # Override the config dispatch to set the value of multiple server options simultaneously # - # === Parameters - # url<String>:: String to be set for all of the chef-server-api URL's + # @param [String] url String to be set for all of the chef-server-api URL's # configurable(:chef_server_url).writes_value do |uri| unless is_valid_url? uri - raise ConfigurationError, "#{uri} is an invalid chef_server_url." + raise ConfigurationError, "#{uri} is an invalid chef_server_url. The URL must start with http://, https://, or chefzero://." end uri.to_s.strip end @@ -184,6 +190,7 @@ module ChefConfig path end + # @param child_path [String] def self.derive_path_from_chef_repo_path(child_path) if chef_repo_path.kind_of?(String) PathHelper.join(chef_repo_path, child_path) @@ -295,6 +302,8 @@ module ChefConfig end # Returns true only if the path exists and is readable and writeable for the user. + # + # @param path [String] def self.path_accessible?(path) File.exists?(path) && File.readable?(path) && File.writable?(path) end |