mirror of
https://github.com/jordansissel/fpm
synced 2024-12-22 00:34:15 +01:00
8a29dd5ea0
Supported log levels: error, warn, info, debug. --verbose is the same as --log=info --debug is the same as --log=debug --log=warn is the default Requested by mattgreenrocks on irc.
8 lines
140 B
Ruby
8 lines
140 B
Ruby
require "fpm/namespace"
|
|
require "fpm/package"
|
|
|
|
class FPM::Package::Mock < FPM::Package
|
|
def input(*args); end
|
|
def output(*args); end
|
|
end
|