class FPM::Package::Empty
Empty
Package type. For strict/meta/virtual package creation
Public Class Methods
Source
# File lib/fpm/package/empty.rb, line 7 def initialize(*args) super(*args) # Override FPM::Package's default "native" architecture value # This feels like the right default because an empty package has no # architecture-specific files, and in most cases an empty package should be # installable anywhere. # # https://github.com/jordansissel/fpm/issues/1846 @architecture = "all" end
Calls superclass method
FPM::Package::new
Public Instance Methods
Source
# File lib/fpm/package/empty.rb, line 19 def output(output_path) logger.warn("Your package has gone into the void.") end