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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T07:30:15+00:00 2026-06-10T07:30:15+00:00

I have a Module named Coordinated that provides distance related methods to any model

  • 0

I have a Module named Coordinated that provides distance related methods to any model that implements the latitude and longitude methods.

module Coordinated
  ...
  def crow_flies_to(place)
    raise ArgumentError, "place does not implement latitude and longitude" unless is_coordinated?(place)
    Math.sqrt((latitude - place.latitude).abs**2 + (longitude - place.longitude).abs**2)
  end

  def is_coordinated?(place)
    place.respond_to?(:latitude) && place.respond_to?(:longitude)
  end
  ...
end

I’d like to test that classes into which Coordinated is included implement the required methods when the class is loaded. How do I do that?

  • 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-10T07:30:17+00:00Added an answer on June 10, 2026 at 7:30 am

    You can use the included hook that runs when a module is included:

    module M
      def self.included(klass)
        raise "Must implement 'foo'" unless klass.instance_methods.include?(:foo)
      end
    end
    
    class C; include M; end
    #=> RuntimeError
    
    class C
      def foo; end
      include M
    end
    #=> C
    

    This has the drawback that the inclusion must happen after the methods are defined, since they must already exist when the hook runs.

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

Sidebar

Related Questions

We have a package named model In model, we have a TopicM module that
I have method that returns module path of given class name def findModulePath(path, className):
I have module that implements custom content type via NodeAPI hooks ( hook_insert ,
I have module application. When I run it, the main window of that app
This is a module named XYZ. def func(x) ..... ..... if __name__==__main__: print func(sys.argv[1])
Drupal 6.x I have this module that manages four different content types. For that
I have a Django model with some static methods. I'd like to call the
I get the following error ImportError: No module named numeric if I have the
The story so far: I have a rails app with a model named Term.
I have a module named Helpers.pm : use warnings; use 5.012; package Helpers; use

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.