class FPM::Fry::Plugin::ScriptHelper::BeforeInstall

Attributes

install[R]

deb: $1 == install rpm: $1 == 1

upgrade[R]

deb: $1 == upgrade rpm: $1 >= 2

Public Class Methods

new(*_) click to toggle source
# File lib/fpm/fry/plugin/script_helper.rb, line 56
def initialize(*_)
  super
  @install = []
  @upgrade = []
end