Sha256: e0a2899219df57522fb12bd90db0879cbf4ff3e5fd20a43aac2d4eb3a980e09e
Contents?: true
Size: 316 Bytes
Versions: 9
Compression:
Stored size: 316 Bytes
Contents
module Cerberus module SCM class Base def initialize(path, config = {}) raise "Path can't be nil" unless path @path, @config = path.strip, config @encoded_path = (@path.include?(' ') ? "\"#{@path}\"" : @path) end def url @path end end end end
Version data entries
9 entries across 9 versions & 2 rubygems