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    
serialize / lib / serialize / controls / no_serializer_methods.rb
Size: Mime:
module Serialize
  module Controls
    module NoSerializerMethods
      class Example
        module Serializer
        end
      end

      def self.example
        Example.new
      end

      def self.example_class
        Example
      end
    end
  end
end