try!(*args)
Calling try! on nil always returns nil.
nil.try!(:name) # => nil
# File activesupport/lib/active_support/core_ext/object/try.rb, line 145 def try!(*args) nil end