Method: Flexdot::Installer#initialize
- Defined in:
- lib/flexdot/installer.rb
#initialize(name, dotfiles_dir, home_dir, output_colorize) ⇒ Installer
Returns a new instance of Installer.
11 12 13 14 15 16 17 |
# File 'lib/flexdot/installer.rb', line 11 def initialize(name, dotfiles_dir, home_dir, output_colorize) @name = name @dotfiles_dir = dotfiles_dir @home_dir = home_dir @backup = Backup.new @output = Output.new(@home_dir, colorize: output_colorize) end |