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
Because Rails 3's `try` method behavior does not dance with its
successors:
Rails 3:
"".try(:call)
=> NoMethodError: undefined method `call' for "emoji":String
Rails 4+:
"".try(:call)
=> nil
0 commit comments