Sha256: fea4e24ef280cd3d915bf061b096e7ab876a842e795c0d0e5ce2bf962eebe852
Contents?: true
Size: 576 Bytes
Versions: 1
Compression:
Stored size: 576 Bytes
Contents
# encoding: utf-8 # for early development only module Rango module Bundling class CopyStrategy < Strategy # @since 0.0.2 def setup end # @since 0.0.2 def match? self.options.key?(:copy) || self.options.empty? end # @since 0.0.2 def run end end class SymlinkStrategy < Strategy # @since 0.0.2 def setup end # @since 0.0.2 def match? self.options.key?(:symlink) || self.options.empty? end # @since 0.0.2 def run end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rango-0.0.4 | lib/rango/bundling/strategies/copy.rb |