Skip to content

Commit

Permalink
Fix Style/PercentLiteralDelimiters
Browse files Browse the repository at this point in the history
  • Loading branch information
tagliala committed Apr 21, 2024
1 parent dbdffdc commit 27c1df4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
6 changes: 0 additions & 6 deletions .rubocop_todo.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions lib/sharepoint/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def list_documents(list_name, conditions, site_path = nil, properties = [])
url = computed_web_api_url(site_path)
filter_param = "$filter=#{conditions}" if conditions.present?
expand_param = '$expand=Folder,File'
default_properties = %w(FileSystemObjectType UniqueId Title Created Modified File)
default_properties = %w[FileSystemObjectType UniqueId Title Created Modified File]
all_properties = default_properties + properties
select_param = "$select=#{all_properties.join(',')}"
url = "#{url}Lists/GetByTitle('#{odata_escape_single_quote(list_name)}')/Items?#{expand_param}&#{select_param}"
Expand Down Expand Up @@ -654,10 +654,10 @@ def build_search_fql_conditions(options)
end

def build_search_properties(options)
default_properties = %w(
default_properties = %w[
Write IsDocument IsContainer ListId WebId URL
Created Title Author Size Path UniqueId contentclass
)
]
properties = options[:properties] || []
properties += default_properties
"selectproperties='#{properties.join(',')}'"
Expand Down Expand Up @@ -696,7 +696,7 @@ def parse_list_response(json_response, all_properties)
record[key.underscore.to_sym] = result[key]
end
file = result['File']
%w(Name ServerRelativeUrl Length).each do |key|
%w[Name ServerRelativeUrl Length].each do |key|
record[key.underscore.to_sym] = file[key]
end
record[:url] = result['URL'].nil? ? nil : result['URL']['Url']
Expand All @@ -707,7 +707,7 @@ def parse_list_response(json_response, all_properties)

def parse_get_document_response(response_body, custom_properties)
all_props = JSON.parse(response_body)['d']
default_properties = %w(GUID Title Created Modified)
default_properties = %w[GUID Title Created Modified]
keys = default_properties + custom_properties
props = {}
keys.each do |key|
Expand Down

0 comments on commit 27c1df4

Please sign in to comment.