Skip to content

Commit d79ad18

Browse files
committed
Rubocop - Style/RegexpLiteral
1 parent 9a38dfb commit d79ad18

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

lib/appium_lib/android/helper.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def _fix_android_native_source(source)
9191
# <android.app.ActionBar $ Tab
9292

9393
# find each closing tag that contains a dollar sign.
94-
source.scan(/<\/([^>]*\$[^>]*)>/).flatten.uniq.each do |problem_tag|
94+
source.scan(%r(/<\/([^>]*\$[^>]*)>/)).flatten.uniq.each do |problem_tag|
9595
# "android.app.ActionBar$Tab"
9696
before, after = problem_tag.split('$')
9797
before.strip!
@@ -106,7 +106,7 @@ def _fix_android_native_source(source)
106106
# <android.app.ActionBar$Tab => <android.app.ActionBar.Tab
107107
# </android.app.ActionBar$Tab> => </android.app.ActionBar.Tab>
108108
source = source.gsub(/<#{before}\s*\$\s*#{after}/, "<#{fixed}").
109-
gsub(/<\/#{before}\s*\$\s*#{after}>/, "</#{fixed}>")
109+
gsub(%r(/<\/#{before}\s*\$\s*#{after}>/), "</#{fixed}>")
110110
end
111111

112112
source
@@ -170,7 +170,7 @@ def current_app
170170
# @private
171171
# noinspection RubyArgCount
172172
def _parse_current_app_line(line)
173-
match = line.match(/ ([^\/ ]+\/[^ }]+)[ }]/)
173+
match = line.match(%r(/ ([^\/ ]+\/[^ }]+)[ }]/))
174174
return nil unless match && match[1]
175175

176176
pair = match[1].split '/'
@@ -274,7 +274,7 @@ def _resourceId(string, on_match)
274274
# [^\/]+ - type is made up of at least one non-/ characters
275275
# \\/ - / ends the type and starts the name
276276
# [\S]+$ - the name contains at least one non-space character and then the line is ended
277-
resource_id = /^[a-zA-Z_][a-zA-Z0-9\._]*:[^\/]+\/[\S]+$/
277+
resource_id = %r(/^[a-zA-Z_][a-zA-Z0-9\._]*:[^\/]+\/[\S]+$/)
278278
string.match(resource_id) ? on_match : ''
279279
end
280280

lib/appium_lib/common/patch.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def raw_execute(command, opts = {}, command_hash = nil)
7979
end
8080

8181
# convert /// into /
82-
path.gsub! /\/+/, '/'
82+
path.gsub! %r(/\/+/), '/'
8383

8484
# change path from session/efac972c-941a-499c-803c-d7d008749/execute
8585
# to /execute

lib/appium_lib/driver.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -404,14 +404,14 @@ def self.absolute_app_path(opts)
404404
# Sauce storage API. http://saucelabs.com/docs/rest#storage
405405
return app_path if app_path.start_with? 'sauce-storage:'
406406
return app_path if app_path.match(/^http/) # public URL for Sauce
407-
if app_path.match(/^(\/|[a-zA-Z]:)/) # absolute file path
407+
if app_path.match(%r(/^(\/|[a-zA-Z]:)/)) # absolute file path
408408
app_path = File.expand_path app_path unless File.exist? app_path
409409
raise "App doesn't exist. #{app_path}" unless File.exist? app_path
410410
return app_path
411411
end
412412

413413
# if it doesn't contain a slash then it's a bundle id
414-
return app_path unless app_path.match(/[\/\\]/)
414+
return app_path unless app_path.match(%r(/[\/\\]/))
415415

416416
# relative path that must be expanded.
417417
# absolute_app_path is called from load_appium_txt

0 commit comments

Comments
 (0)