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