You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to get a example of true or false if statement using diffy ? I'm working on a project that just needs to check if theres a difference if so then take a action.
The text was updated successfully, but these errors were encountered:
It sounds like all you're really trying to do here is see if two strings or files are equal. You'd probably be better off just using ruby equality for this, and cutting diffy out of the equation.
e.g.
if string1 == string2
#handle equality
else
#handle difference
end
Is it possible to get a example of true or false if statement using diffy ? I'm working on a project that just needs to check if theres a difference if so then take a action.
The text was updated successfully, but these errors were encountered: