Sha256: f3132ca163455920bba1d048a46ef0d1e4bbc0da06522632585812bf43389657

Contents?: true

Size: 1.15 KB

Versions: 17

Compression:

Stored size: 1.15 KB

Contents

#
# Copyright 2012 Mortar Data 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.
#

module Mortar
  module Snapshot

    extend self
    
    def create_and_push_snapshot_branch(git, project)
      # create / push a snapshot branch
      snapshot_branch = action("Taking code snapshot") do
        git.create_snapshot_branch()
      end

      git_ref = action("Sending code snapshot to Mortar") do
        # push the code
        git.push(project.remote, snapshot_branch)

        # grab the commit hash and clean out the branch from the local branches
        ref = git.git_ref(snapshot_branch)
        git.branch_delete(snapshot_branch)
        ref
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
mortar-0.6.1 lib/mortar/snapshot.rb
mortar-0.6.0 lib/mortar/snapshot.rb
mortar-0.5.1 lib/mortar/snapshot.rb
mortar-0.5.0 lib/mortar/snapshot.rb
mortar-0.4.4 lib/mortar/snapshot.rb
mortar-0.4.3 lib/mortar/snapshot.rb
mortar-0.4.2 lib/mortar/snapshot.rb
mortar-0.4.1 lib/mortar/snapshot.rb
mortar-0.4.0 lib/mortar/snapshot.rb
mortar-0.3.4 lib/mortar/snapshot.rb
mortar-0.3.3 lib/mortar/snapshot.rb
mortar-0.3.2 lib/mortar/snapshot.rb
mortar-0.3.1 lib/mortar/snapshot.rb
mortar-0.3.0 lib/mortar/snapshot.rb
mortar-0.2.1 lib/mortar/snapshot.rb
mortar-0.2.0 lib/mortar/snapshot.rb
mortar-0.1.0 lib/mortar/snapshot.rb