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    
validate / lib / validate / controls / validator / specialized.rb
Size: Mime:
module Validate
  module Controls
    module Validator
      module Specialized
        def self.example
          Example.new
        end

        class Example
          module Validator
            def self.some_specialized_validator
              SomeSpecialization
            end

            module SomeSpecialization
              def self.call(subject)
                true
              end
            end
          end
        end
      end
    end
  end
end