git-runner-deploy 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/git-runner-deploy.gemspec +20 -0
- data/lib/git-runner-deploy.rb +114 -0
- metadata +68 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 James Brooks
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Git::Runner::Deploy
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'git-runner-deploy'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install git-runner-deploy
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'git-runner-deploy'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "git-runner-deploy"
|
8
|
+
gem.version = GitRunner::Instruction::Deploy::VERSION
|
9
|
+
gem.authors = ["James Brooks"]
|
10
|
+
gem.email = ["james@jamesbrooks.net"]
|
11
|
+
gem.description = "Capistrano deploy module for git-runner"
|
12
|
+
gem.summary = "Capistrano deploy module for git-runner"
|
13
|
+
gem.homepage = "https://github.com/JamesBrooks/git-runner-deploy"
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
+
gem.require_paths = ["lib"]
|
18
|
+
|
19
|
+
gem.add_dependency 'git-runner'
|
20
|
+
end
|
@@ -0,0 +1,114 @@
|
|
1
|
+
require 'digest'
|
2
|
+
|
3
|
+
module GitRunner
|
4
|
+
class Instruction
|
5
|
+
class Base
|
6
|
+
end
|
7
|
+
|
8
|
+
# Performs deployments using capistrano (cap deploy)
|
9
|
+
class Deploy < Base
|
10
|
+
VERSION = '0.0.1'
|
11
|
+
|
12
|
+
attr_accessor :clone_directory
|
13
|
+
|
14
|
+
|
15
|
+
def should_run?
|
16
|
+
branches.empty? || branches.include?(branch.name)
|
17
|
+
end
|
18
|
+
|
19
|
+
def perform
|
20
|
+
start_time = Time.now
|
21
|
+
|
22
|
+
Text.out(Text.green("Performing Deploy (#{environment_from_branch(branch)})"), :heading)
|
23
|
+
|
24
|
+
checkout_branch
|
25
|
+
|
26
|
+
if missing_capfile?
|
27
|
+
Text.out(Text.red("Missing Capfile, unable to complete deploy."))
|
28
|
+
fail!
|
29
|
+
end
|
30
|
+
|
31
|
+
prepare_deploy_environment
|
32
|
+
perform_deploy
|
33
|
+
cleanup_deploy_environment
|
34
|
+
|
35
|
+
end_time = Time.now
|
36
|
+
|
37
|
+
Text.out(Text.green("\u2714 Deploy successful, completed in #{(end_time - start_time).ceil} seconds"))
|
38
|
+
end
|
39
|
+
|
40
|
+
def branches
|
41
|
+
args.split(/\s+/)
|
42
|
+
end
|
43
|
+
|
44
|
+
def missing_capfile?
|
45
|
+
!File.exists?("#{clone_directory}/Capfile")
|
46
|
+
end
|
47
|
+
|
48
|
+
def uses_bundler?
|
49
|
+
File.exists?("#{clone_directory}/Gemfile")
|
50
|
+
end
|
51
|
+
|
52
|
+
def multistage?
|
53
|
+
result = execute("grep -e 'require.*capistrano.*multistage' #{clone_directory}/#{Configuration.instruction_file} || true")
|
54
|
+
!result.empty?
|
55
|
+
end
|
56
|
+
|
57
|
+
def checkout_branch
|
58
|
+
timestamp = Time.now.strftime("%Y%m%d%H%M%S")
|
59
|
+
self.clone_directory = File.join(Configuration.tmp_directory, "#{branch.repository_name}-#{environment_from_branch(branch)}-#{timestamp}")
|
60
|
+
|
61
|
+
Text.out("Checking out #{branch.name} to #{clone_directory}")
|
62
|
+
|
63
|
+
execute(
|
64
|
+
"mkdir -p #{clone_directory}",
|
65
|
+
"git clone --depth=1 --branch=#{branch.name} file://#{branch.repository_path} #{clone_directory}"
|
66
|
+
)
|
67
|
+
end
|
68
|
+
|
69
|
+
def prepare_deploy_environment
|
70
|
+
Text.out("Preparing deploy environment")
|
71
|
+
|
72
|
+
if uses_bundler?
|
73
|
+
execute(
|
74
|
+
"cd #{clone_directory}",
|
75
|
+
"bundle install --path=#{File.join(Configuration.tmp_directory, '.gems')}"
|
76
|
+
)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
def perform_deploy
|
81
|
+
cap_deploy_command = if multistage?
|
82
|
+
Text.out("Deploying application (multistage detected)")
|
83
|
+
"cap #{environment_from_branch(branch)} deploy"
|
84
|
+
else
|
85
|
+
Text.out("Deploying application")
|
86
|
+
"cap deploy"
|
87
|
+
end
|
88
|
+
|
89
|
+
execute(
|
90
|
+
"cd #{clone_directory}",
|
91
|
+
cap_deploy_command
|
92
|
+
)
|
93
|
+
end
|
94
|
+
|
95
|
+
def cleanup_deploy_environment
|
96
|
+
Text.out("Cleaning deploy environment")
|
97
|
+
execute(
|
98
|
+
"rm -rf #{clone_directory}",
|
99
|
+
"cd #{branch.repository_path}"
|
100
|
+
)
|
101
|
+
end
|
102
|
+
|
103
|
+
|
104
|
+
private
|
105
|
+
def environment_from_branch(branch)
|
106
|
+
if branch.name == 'master'
|
107
|
+
'production'
|
108
|
+
else
|
109
|
+
branch.name
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
metadata
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: git-runner-deploy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- James Brooks
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-10-07 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: git-runner
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
description: Capistrano deploy module for git-runner
|
31
|
+
email:
|
32
|
+
- james@jamesbrooks.net
|
33
|
+
executables: []
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- .gitignore
|
38
|
+
- Gemfile
|
39
|
+
- LICENSE.txt
|
40
|
+
- README.md
|
41
|
+
- Rakefile
|
42
|
+
- git-runner-deploy.gemspec
|
43
|
+
- lib/git-runner-deploy.rb
|
44
|
+
homepage: https://github.com/JamesBrooks/git-runner-deploy
|
45
|
+
licenses: []
|
46
|
+
post_install_message:
|
47
|
+
rdoc_options: []
|
48
|
+
require_paths:
|
49
|
+
- lib
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ! '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
requirements: []
|
63
|
+
rubyforge_project:
|
64
|
+
rubygems_version: 1.8.24
|
65
|
+
signing_key:
|
66
|
+
specification_version: 3
|
67
|
+
summary: Capistrano deploy module for git-runner
|
68
|
+
test_files: []
|