Sha256: d691f9b0e0f60603df2231914507a13e8635c6278ad05fd7b4cc89bcd1ac25be
Contents?: true
Size: 384 Bytes
Versions: 32
Compression:
Stored size: 384 Bytes
Contents
module KentuckySupport def install_kentucky(path = nil) if path run_simple("bundle exec kentucky install --path '#{path}'") else run_simple("bundle exec kentucky install") end end def kentucky_path(prefix, path) if prefix File.join(prefix, 'kentucky', path) else File.join('kentucky', path) end end end World(KentuckySupport)
Version data entries
32 entries across 32 versions & 1 rubygems