Sha256: a811aa306847b521e9d7b6ea62080b66a17ddb0e86355f50d4f543f8cb51526f
Contents?: true
Size: 578 Bytes
Versions: 7
Compression:
Stored size: 578 Bytes
Contents
require "terraspace-bundler" TerraspaceBundler.config.logger = Terraspace.logger class Terraspace::CLI class Bundle def initialize(options={}) @options = options end def run TerraspaceBundler::CLI.start(args) end # Allows bundle to be called without install. So both work: # # terraspace bundle # terraspace bundle install # def args args = @options[:args] if args.empty? or args.first.include?('--') args.unshift("install") end args = ["bundle"] + args args end end end
Version data entries
7 entries across 7 versions & 1 rubygems