Sha256: b6ea87f89df530a924f4591322e65f613d5cb1e680626c98199b4d6e57efca25
Contents?: true
Size: 595 Bytes
Versions: 84
Compression:
Stored size: 595 Bytes
Contents
require "terraspace-bundler" class Terraspace::CLI class Bundle def initialize(options={}) @options = options end def run TerraspaceBundler.config.deep_merge!(Terraspace.config.bundle) 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
84 entries across 84 versions & 1 rubygems