DEV Community

Discussion on: What did you learn this week on Dev.to?

Collapse
 
drbragg profile image
Drew Bragg

If you need/want the method on the File class and not just the instance you could do:

class File
  def new_method
    # do_stuff
  end
end

file = File.new(...)
file.new_method