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 / not_boolean_result.rb
Size: Mime:
module Validate
  module Controls
    module Validator
      module NotBooleanResult
        def self.example
          Example.new
        end

        class Example
          module Validator
            def self.call(subject)
              :something
            end
          end
        end
      end
    end
  end
end