Sha256: 6f79f050a223c714ff8ad37471c28102d0768975db2ac55a411359b59fd31871
Contents?: true
Size: 270 Bytes
Versions: 31
Compression:
Stored size: 270 Bytes
Contents
require_relative('./environment.rb') class Pull < Array def initialize update end def update if(Environment.scm=='git') self.add "<%`git pull 2>&1`%>" end end def add command self << command if(!include?(command)) end end
Version data entries
31 entries across 31 versions & 1 rubygems