class SplitIoClient::Cache::Stores::LocalhostSplitStore

def load_features

def load_features
  yaml_extensions = ['.yml', '.yaml']
  if yaml_extensions.include? File.extname(@config.split_file)
    parse_yaml_features
  else
    @config.logger.warn('Localhost mode: .split mocks ' \
      'will be deprecated soon in favor of YAML files, which provide more ' \
      'targeting power. Take a look in our documentation.')
    parse_plain_text_features
  end
end