Sha256: b4167a45777d3d93a97c1abad3e123cbc520e6da7b87709d9ab65d9879869471
Contents?: true
Size: 741 Bytes
Versions: 29
Compression:
Stored size: 741 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2015 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. require 'pmap' require_relative 'process_helper' require_relative '../environment/environment' GoodData::Environment.load module GoodData::Helpers module ScheduleHelper include GoodData::Environment::ScheduleHelper class << self def remove_old_schedules(project) schedules = project.schedules schedules.pmap do |schedule| next if schedule.obj_id == SCHEDULE_ID puts "Deleting #{schedule.inspect}" schedule.delete end end end end end
Version data entries
29 entries across 29 versions & 2 rubygems