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 7609011
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T01:04:06+00:00 2026-05-31T01:04:06+00:00

What i bascially want is to extend the Numeric class so that it has

  • 0

What i bascially want is to extend the Numeric class so that it has one extra Attribute (currencie), which is set when of the undefined methods are invoked [yen(s), euro(s), etc.]
So, here is the class definition:

 class Numeric

 @@currencies = {'yen' => 0.013, 'euro' => 1.292, 'rupee' => 0.019, 'dollar' => 1}

 attr_accessor :currencie

 def method_missing(method_id)
   singular_currency = method_id.to_s.gsub( /s$/, '')
   if @@currencies.has_key?(singular_currency)
    self.currencie = singular_currency
    self * @@currencies[singular_currency]
    puts "method finished"
   else
    super
   end
 end

 def in(convert_to) 

 end

end

Now, when i run the code

a = 5.rupees
puts "currencie is -> " + a.currencie

i’ve got:

method finished
/path_to_file/hw2.1.rb:33:in `<main>': undefined method `currencie' for nil:NilClass (NoMethodError) 

Also the attribute currencie seems to be unset.

What am i doing wrong ?

  • 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-31T01:04:07+00:00Added an answer on May 31, 2026 at 1:04 am

    In your case method_missing should return object i.e. self. Just add self to method_missing and it will work.

    def method_missing(method_id)
       singular_currency = method_id.to_s.gsub( /s$/, '')
       if @@currencies.has_key?(singular_currency)
        self.currencie = singular_currency        
        puts "method finished"
        self * @@currencies[singular_currency] # just change the order of expressions
       else
        super
       end
     end
    

    EDIT: Fixed as injekt said

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

Sidebar

Related Questions

Basically, I have a control that I want to extend from the Selector Class
I have a Panel which I want to extend and override MeassureOverride and Arrange
I want to use simplified select one tag, which would generate select items list
I want create a DataSet class which is basically a list of samples. But
Hi I have classes that extend some given interfaces which I can't change. And
Bascially I want to know the best way to hide/show an ASP.NET control from
So I basically want to have a static method in my AR class to
What is the recommended way to extend class behavior, via class_eval and modules (not
I have a generic Collection class, with a variety of public getter methods. To
Lucene has Analyzers that basically tokenize and filter the corpus when indexing. Operations include

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.