Sha256: 66b2afda78f820bfc526e845330a59710cbc212ece5b81fd635bed0f0cbe48cc
Contents?: true
Size: 327 Bytes
Versions: 11
Compression:
Stored size: 327 Bytes
Contents
# Set up the PE build cache dir class PEBuild::Action::PEBuildDir def initialize(app, env) @app, @env = app, env @build_dir = @env[:home_path].join('pe_builds') end def call(env) @env = env @build_dir.mkpath unless @build_dir.exist? @env[:pe_build_dir] = @build_dir @app.call(@env) end end
Version data entries
11 entries across 11 versions & 1 rubygems