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    
transform / lib / transform / controls / no_format.rb
Size: Mime:
module Transform
  module Controls
    module NoFormat
      class Example
        module Transformer
          def self.some_format
          end

          def self.instance(raw_data)
          end

          def self.raw_data(instance)
          end
        end
      end

      def self.example
        Example.new
      end

      def self.example_class
        Example
      end
    end
  end
end