Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
controls / lib / controls / id.rb
Size: Mime:
module Controls
  module ID
    def self.get(*arguments)
      Identifier::UUID::Controls::Incrementing.example(*arguments)
    end
    singleton_class.send :alias_method, :example, :get

    module Random
      def self.example
        Identifier::UUID::Controls::Random.example
      end
    end
  end
end