class SolrMakr::Configsets::GetNodes

Public Instance Methods

check_for_missing_nodes!() click to toggle source

@api private @return [void]

# File lib/solr_makr/configsets/get_nodes.rb, line 26
def check_for_missing_nodes!
  looks_like_a_valid_configset?(conf_path) do |name|
    errors.add :base, "missing required solr config file: #{name}"
  end
end
execute() click to toggle source

@return [<SolrMakr::Configsets::Node>]

# File lib/solr_makr/configsets/get_nodes.rb, line 16
def execute
  SolrMakr::Configsets::Node.gather root: conf_path
end