Sha256: a33be96395daba8d21687dd6ade6556f7dd07a55fce5cedb56dbe4c4cdfc7c07

Contents?: true

Size: 448 Bytes

Versions: 2

Compression:

Stored size: 448 Bytes

Contents

module Generators

  module Partial

    # Superclass for partial strategies.
    #
    class Strategy < Generators::Strategy
    
      # Defines whether to use the exact bundle
      # instead of the partial one.
      #
      # Default is @false@.
      #
      # For example: 
      #  Partial::None.new # Uses the exact index instead of the partial one.
      #
      def use_exact_for_partial?
        false
      end
    
    end

  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
picky-2.7.0 lib/picky/generators/partial/strategy.rb
picky-2.6.0 lib/picky/generators/partial/strategy.rb