Method: Dply::Release#install
- Defined in:
- lib/dply/release.rb
#install ⇒ Object
47 48 49 50 51 52 53 54 55 |
# File 'lib/dply/release.rb', line 47 def install if installed? logger.debug "release #{name} already installed" return end archive.extract do |path| FileUtils.mv path, "releases/#{name}" end end |