Guest User

Untitled

a guest
Jan 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. - if request.fullpath == "/" || "/info"
  2.  
  3. - if request.fullpath != "/" || "/info"
  4.  
  5. - if request.fullpath != "/"
  6.  
  7. - if %w(/ /info).include? request.fullpath
  8. #and opposite
  9. - unless %w(/ /info).include? request.fullpath
  10.  
  11. - unless request.fullpath.in?("/", "/info")
  12.  
  13. - if !request.fullpath.in?("/", "/info")
  14.  
  15. - if request.fullpath != "/" || request.fullpath != "/info"
  16.  
  17. unless request.fullpath != "/" && "/info"
Add Comment
Please, Sign In to add comment