Sha256: 9b5553dc7ae08d68df33400e199b2a20e708d39d12d1eee2af97f3535350c777

Contents?: true

Size: 250 Bytes

Versions: 1

Compression:

Stored size: 250 Bytes

Contents

module AppBuilder
  class Builder < Base
    def build
      archiver.archive
      execute("tar zcf #{File.join(build_path, 'app.tar.gz')} .", chdir: archive_path)
    end

    def archiver
      @archiver ||= Archiver.new(config)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
app_builder-0.1.0 lib/app_builder/builder.rb