There are three ways to invoke a method in ruby. Can you give me at least two? Technology Community › Category: Ruby › There are three ways to invoke a method in ruby. Can you give me at least two? 0 Vote Up Vote Down VietMX Staff asked 4 years ago We are looking for the dot operator (or period operator), the Object#send method, or method(:foo).call object = Object.new puts object.object_id #=> 282660 puts object.send(:object_id) #=> 282660 puts object.method(:object_id).call # (Kudos to Ezra) #=> 282660