Sha256: c30e6c6c19dd1456d770a060c6e464bd2812fa356ec03a108c0bd727d23771f3

Contents?: true

Size: 708 Bytes

Versions: 1

Compression:

Stored size: 708 Bytes

Contents

module KCommercial
  module Resources
    class BundleGenerator
      attr_accessor :bundle_name, :component_name, :resource_path

      def initialize(component_name, bundle_name, resource_path)
        @component_name = component_name
        @bundle_name = bundle_name
        @resource_path = resource_path
      end

      def check_exist?
        raise NotImplementedError, "#{self.class.name}#check是抽象方法"
      end

      def generate!
        raise NotImplementedError, "#{self.class.name}#generate!是抽象方法"
      end
    end
  end
end

module CocoaDepot
  module Resources
    class SubspecBundleGenerator
      def check
      end

      def generate!

      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
KCommercialPipeline-0.2.5.1 lib/KCommercialPipeline/core/resource/source/subspec_bundle.rb