@@ -91,7 +91,7 @@ def _fix_android_native_source(source)
91
91
# <android.app.ActionBar $ Tab
92
92
93
93
# 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 |
95
95
# "android.app.ActionBar$Tab"
96
96
before , after = problem_tag . split ( '$' )
97
97
before . strip!
@@ -106,7 +106,7 @@ def _fix_android_native_source(source)
106
106
# <android.app.ActionBar$Tab => <android.app.ActionBar.Tab
107
107
# </android.app.ActionBar$Tab> => </android.app.ActionBar.Tab>
108
108
source = source . gsub ( /<#{ before } \s *\$ \s *#{ after } / , "<#{ fixed } " ) .
109
- gsub ( /<\/ #{ before } \s *\$ \s *#{ after } >/ , "</#{ fixed } >" )
109
+ gsub ( %r( /<\/ #{ before } \s *\$ \s *#{ after } >/) , "</#{ fixed } >" )
110
110
end
111
111
112
112
source
@@ -170,7 +170,7 @@ def current_app
170
170
# @private
171
171
# noinspection RubyArgCount
172
172
def _parse_current_app_line ( line )
173
- match = line . match ( / ([^\/ ]+\/ [^ }]+)[ }]/ )
173
+ match = line . match ( %r( / ([^\/ ]+\/ [^ }]+)[ }]/) )
174
174
return nil unless match && match [ 1 ]
175
175
176
176
pair = match [ 1 ] . split '/'
@@ -274,7 +274,7 @@ def _resourceId(string, on_match)
274
274
# [^\/]+ - type is made up of at least one non-/ characters
275
275
# \\/ - / ends the type and starts the name
276
276
# [\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 ]+$/)
278
278
string . match ( resource_id ) ? on_match : ''
279
279
end
280
280
0 commit comments