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

  • Home
  • SEARCH
  • 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 7683891
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T18:54:00+00:00 2026-05-31T18:54:00+00:00

I have a class that needs to be initialized but it’s namespaced like this:

  • 0

I have a class that needs to be initialized but it’s namespaced like this:

SomeThing::MyClass.new()

But I’m calling it from the args in a rake task, so it comes in as a string:

task :blah, [:my_class_name] => :environment do |t, args|
  class_name = args[:my_class_name].camelize.constantize
  puts class_name
end

So obviously if I call the rake task like this:

rake blah[my_class]

My task returns:

MyClass # <= Actual ruby object

But how can I get it to run from within a namespace chained before another method, like this:

SomeThing::MyClass.new()

From a string provided as the input?

  • 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-05-31T18:54:02+00:00Added an answer on May 31, 2026 at 6:54 pm

    You can make your life easier by just using the string of the class name and doing

    Something.const_get(args[:my_class_name]).new
    

    Here’s a simplified version (normal IRB, no Rails):

    module Something ; end
    class Something::MyClass ; end
    my_class_name = "MyClass"
    Something.const_get(my_class_name).new 
    #=> #<Something::MyClass:0x007fa8c4122dd8>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I have a class that needs to implement an interface but one or
I have a class with a field that needs to be initialized when the
I have a Java class that looks like this: public class My_ABC { int
I have one class that needs to grab an attribute that is set in
I have a session class that needs to store session information in a MySQL
I have a generic class that needs to limit an enum depending on the
If you have data for a class that will be modified and needs to
I have a class that I need to perform some actions on but I
I have a class where the instances of this class needs to track the
I have repository class that is used by at least 2 other classes. This

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.