aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/sisu/v3/defaults.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sisu/v3/defaults.rb')
-rw-r--r--lib/sisu/v3/defaults.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/sisu/v3/defaults.rb b/lib/sisu/v3/defaults.rb
index 0c45ecdd..47e3c970 100644
--- a/lib/sisu/v3/defaults.rb
+++ b/lib/sisu/v3/defaults.rb
@@ -738,9 +738,9 @@ module SiSU_Viz
gsub(/\(/,'(?:') # avoid need to escape use of brackets within regex provided
m='\b(' + r + ')\b'
make[:str]
- make[:regx]=if x =~/i/; /#{m}/i
- else /#{m}/
- end
+ make[:regx]=(x =~/i/) \
+ ? (/#{m}/i)
+ : (/#{m}/)
else nil
end
end
@@ -759,9 +759,9 @@ module SiSU_Viz
gsub(/\(/,'(?:') # avoid need to escape use of brackets within regex provided
m='\b(' + r + ')\b'
make[:str]
- make[:regx]=if x =~/i/; /#{m}/i
- else /#{m}/
- end
+ make[:regx]=(x =~/i/) \
+ ? (/#{m}/i)
+ : (/#{m}/)
else nil
end
make