f5025cb84e
This just inherits from Gem::Package::Tar{Reader,Writer} at the moment.
We may want to build out higher-level methods than what the inherited
code already provides. Or don't inherit at all.
9 lines
166 B
Ruby
9 lines
166 B
Ruby
# -*- coding: binary -*-
|
|
|
|
require 'rubygems/package'
|
|
|
|
module Rex::Tar
|
|
class Reader < Gem::Package::TarReader; end
|
|
class Writer < Gem::Package::TarWriter; end
|
|
end
|