1
0
mirror of https://github.com/jordansissel/fpm synced 2024-12-22 00:34:15 +01:00
fpm/spec/fixtures/mockpackage.rb
Jordan Sissel 8a29dd5ea0 Add --log=xxx support
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.
2014-10-15 18:29:42 +00:00

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