Sha256: 1fae897f82a189fa55d5198596a6329fd8e0c740d526f1af1b42042c3345e0cf
Contents?: true
Size: 1 KB
Versions: 1
Compression:
Stored size: 1 KB
Contents
# # Copyright 2011 Red Hat, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # $: << File.join(File.dirname(__FILE__), '..') require 'torquebox-messaging' require 'deployer' require 'models' class DeployerTask < TorqueBox::Messaging::Task def deploy(payload) push = Push.get(payload[:id]) if push Deployer.undeploy_branch(push.branch) Deployer.new(push).deploy end end def undeploy(payload) push = Push.get(payload[:id]) if push Deployer.new(push).undeploy end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
torquebox-stompbox-0.3.3 | app/tasks/deployer_task.rb |