pedrocarrico/public_ip

View on GitHub
lib/public_ip/service/registrable.rb

Summary

Maintainability
A
0 mins
Test Coverage
module PublicIp
  module Service
    module Registrable
      def inherited(child_class)
        PublicIp::Service::Registry.register_service(child_class)
      end
    end
  end
end