user1207719
user1207719

Reputation: 33

How do I create automatically a instance of every class in a directory?

How do I in ruby create an instance of every class in each file in a directory and providing it as an array?

Thank you in advance!

Upvotes: 3

Views: 903

Answers (2)

gmalette
gmalette

Reputation: 2469

You can use the ObjectSpace to find the new classes and then instantiate them.

def load_and_instantiate(class_files)
  # Find all the classes in ObjectSpace before the requires
  before = ObjectSpace.each_object(Class).to_a
  # Require all files
  class_files.each {|file| require file }
  # Find all the classes now
  after = ObjectSpace.each_object(Class).to_a
  # Map on the difference and instantiate
  (after - before).map {|klass| klass.new }
end

# Load them!
files = Dir.glob("path/to/dir/*.rb")
objects = load_and_instantiate(files)

Upvotes: 7

Mark
Mark

Reputation: 684

Assuming that they all share the same name as their containing .rb file and take no arguments to initialize...

#initialize array of objects
objects = []

#list ruby files in directory
classes = Dir.glob( "*.rb" )

#make method to easily remove file extension
def cleanse( fileName )
    return fileName.gsub( ".rb", "" )
end

classes.each do |file|
    #require the new class
    require fileName

    #add it to our array
    objects[objects.length] = eval( cleanse(file) + ".new()" )
end

Upvotes: 0

Related Questions