Method: CronEdit::Crontab.Merge

Defined in:
lib/cronedit.rb

.Merge(anotherCrontab) ⇒ Object

Merges this crontab with another one (see instance method merge).



91
92
93
94
95
# File 'lib/cronedit.rb', line 91

def Merge anotherCrontab
    cm=self.new
    cm.merge anotherCrontab
    cm.commit
end