Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8747959
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T12:26:41+00:00 2026-06-13T12:26:41+00:00

I am attempting to make a module that extends the functionality of the FileUtils

  • 0

I am attempting to make a module that extends the functionality of the FileUtils class.

require 'fileutils'

module FileManager
  extend FileUtils
end

puts FileManager.pwd

if I run this, I’ll get a private method 'pwd' called for FileManager:Module (NoMethodError)
error

Update:
Why are these class methods included privately and how can I expose all of them without having to manually include each method as public class methods in the FileManager module?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T12:26:42+00:00Added an answer on June 13, 2026 at 12:26 pm

    It seems like the instance methods on FileUtils are all private (as mentioned in another answer here, that means they can only be called without an explicit receiver). And what you get when you include or extend is the instance methods. For example:

    require 'fileutils'
    
    class A
      include FileUtils
    end
    A.new.pwd #=> NoMethodError: private method `pwd' called for #<A:0x0000000150e5a0>
    
    o = Object.new
    o.extend FileUtils
    o.pwd #=> NoMethodError: private method `pwd' called for #<Object:0x00000001514068>
    

    It turns out all the methods we want on FileUtils are there twice, as private instance methods and also as public class methods (aka singleton methods).

    Based on this answer I came up with this code which basically copies all the class methods from FileUtils to FileManager:

    require 'fileutils'
    
    module FileManager
      class << self
        FileUtils.singleton_methods.each do |m|
          define_method m, FileUtils.method(m).to_proc
        end
      end
    end
    
    FileManager.pwd #=> "/home/scott"
    

    It’s not pretty, but it does the job (as far as I can tell).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am attempting to make a simple class that serializes itself to disk when
I am attempting make a simulator class that will use a Queue to add
So I am attempting to make a module that, when imported, will cause any
Attempting to make a NSObject called 'Person' that will hold the login details for
I'm attempting to make a simple linear text game that will display inside a
Im attempting to make a little app that lets you add text boxes to
I'm attempting to make a messaging system in which any class derived from Messageable
I'm attempting to make a function in Ruby that tells if a string is
I am attempting to make a pie chart using a php file that gets
I'm attempting to make a generic routine within my program that will instantiate objects

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.