capistrano-deployment-status 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +44 -0
- data/Rakefile +2 -0
- data/capistrano-deployment-status.gemspec +24 -0
- data/lib/capistrano-deployment-status.rb +0 -0
- data/lib/capistrano/deployment_status.rb +1 -0
- data/lib/capistrano/deployment_status/version.rb +5 -0
- data/lib/capistrano/deployment_status/view.html.erb +33 -0
- data/lib/capistrano/tasks/deployment_status.rake +31 -0
- metadata +98 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 352abbecde8faef536efd00137a195eba2c4eb63
|
4
|
+
data.tar.gz: d4933dc6efb00ac03496b7c7c1351e8e8674cde7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 771b6a5d47089ceceedf98efdd959a58727859ffdf60c288427d63a80eb9ad24f467d4794453c9199c8b78c90a45bbe53e0f23bd673ec3a9c827010bd0759d1e
|
7
|
+
data.tar.gz: 2af1fe3129347e64c79916f58ad58cd7fff18314f583bb146e2dc8b1062641774f5dabff795509bc30cdb354ab169489e6ef9a557b42ed7051703f9b15769e57
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 B.J. Allen
|
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,44 @@
|
|
1
|
+
# Capistrano::DeploymentStatus
|
2
|
+
|
3
|
+
A task for Capistrano v3 which adds a simple html page to your deployed rails app to show the details of the deployment.
|
4
|
+
|
5
|
+
* application
|
6
|
+
* branch/tag
|
7
|
+
* deploy time
|
8
|
+
* deployed by
|
9
|
+
* scm revision
|
10
|
+
* release timestamp
|
11
|
+
|
12
|
+
## Installation
|
13
|
+
|
14
|
+
Add this line to your application's Gemfile:
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
gem 'capistrano-deployment-status'
|
18
|
+
```
|
19
|
+
|
20
|
+
And then execute:
|
21
|
+
|
22
|
+
$ bundle
|
23
|
+
|
24
|
+
Or install it yourself as:
|
25
|
+
|
26
|
+
$ gem install capistrano-deployment-status
|
27
|
+
|
28
|
+
## Usage
|
29
|
+
|
30
|
+
Require the gem in your Capfile:
|
31
|
+
|
32
|
+
```
|
33
|
+
require 'capistrano/deployment_status'
|
34
|
+
```
|
35
|
+
|
36
|
+
Currently, that's it. A task will at the end of the deploy that will place a deployment_status.html file in the release's public directory.
|
37
|
+
|
38
|
+
## Contributing
|
39
|
+
|
40
|
+
1. Fork it
|
41
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
42
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
43
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
44
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'capistrano/deployment_status/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "capistrano-deployment-status"
|
8
|
+
spec.version = Capistrano::DeploymentStatus::VERSION
|
9
|
+
spec.authors = ["B.J. Allen"]
|
10
|
+
spec.email = ["ballen@numerex.com"]
|
11
|
+
spec.summary = %q{Creates a deployment status page.}
|
12
|
+
spec.description = %q{Creates a deployment status page. This page shows what was deployed and who deployed it.}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency 'capistrano', '~> 3.1'
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
24
|
+
end
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
load File.expand_path("../tasks/deployment_status.rake", __FILE__)
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title><%= application %> Status</title>
|
5
|
+
</head>
|
6
|
+
<body>
|
7
|
+
|
8
|
+
<p>
|
9
|
+
application: <%= application %>
|
10
|
+
</p>
|
11
|
+
|
12
|
+
<p>
|
13
|
+
branch/tag: <%= branch %>
|
14
|
+
</p>
|
15
|
+
|
16
|
+
<p>
|
17
|
+
deployed: <%= Time.now.strftime('%b %d, %Y @ %-l:%M:%S%P %Z') %>
|
18
|
+
</p>
|
19
|
+
|
20
|
+
<p>
|
21
|
+
deployed by: <%= deployed_by %>
|
22
|
+
</p>
|
23
|
+
|
24
|
+
<p>
|
25
|
+
release revision: <%= real_revision %>
|
26
|
+
</p>
|
27
|
+
|
28
|
+
<p>
|
29
|
+
release timestamp: <%= release_timestamp %>
|
30
|
+
</p>
|
31
|
+
|
32
|
+
</body>
|
33
|
+
</html>
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'erb'
|
2
|
+
|
3
|
+
set :deploy_status_template, "public/deployment_status.html"
|
4
|
+
|
5
|
+
namespace :deploy do
|
6
|
+
desc 'Create deployment status page'
|
7
|
+
task :status_page do
|
8
|
+
unless release_path
|
9
|
+
warn("This task is meant to be run with a full deployment")
|
10
|
+
end
|
11
|
+
|
12
|
+
application = fetch(:application, 'unknown')
|
13
|
+
branch = fetch(:branch, 'unknown')
|
14
|
+
real_revision = fetch(:current_revision, 'unknown')
|
15
|
+
release_timestamp = fetch(:release_timestamp, 'unknown')
|
16
|
+
deployed_by = fetch(:deployed_by, ENV['USER'])
|
17
|
+
|
18
|
+
result = StringIO.new(ERB.new(template).result(binding))
|
19
|
+
output_path = "#{release_path}/#{fetch(:deploy_status_template)}"
|
20
|
+
on roles(:app) do
|
21
|
+
upload! result, output_path
|
22
|
+
execute :chmod, '644', output_path
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
after "deploy:published", "deploy:status_page"
|
27
|
+
|
28
|
+
def template
|
29
|
+
input_path = File.join(File.dirname(__FILE__), "../deployment_status/view.html.erb")
|
30
|
+
File.read(input_path)
|
31
|
+
end
|
metadata
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: capistrano-deployment-status
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- B.J. Allen
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-09-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: capistrano
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.1'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.1'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.7'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.7'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
description: Creates a deployment status page. This page shows what was deployed and
|
56
|
+
who deployed it.
|
57
|
+
email:
|
58
|
+
- ballen@numerex.com
|
59
|
+
executables: []
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- ".gitignore"
|
64
|
+
- Gemfile
|
65
|
+
- LICENSE.txt
|
66
|
+
- README.md
|
67
|
+
- Rakefile
|
68
|
+
- capistrano-deployment-status.gemspec
|
69
|
+
- lib/capistrano-deployment-status.rb
|
70
|
+
- lib/capistrano/deployment_status.rb
|
71
|
+
- lib/capistrano/deployment_status/version.rb
|
72
|
+
- lib/capistrano/deployment_status/view.html.erb
|
73
|
+
- lib/capistrano/tasks/deployment_status.rake
|
74
|
+
homepage: ''
|
75
|
+
licenses:
|
76
|
+
- MIT
|
77
|
+
metadata: {}
|
78
|
+
post_install_message:
|
79
|
+
rdoc_options: []
|
80
|
+
require_paths:
|
81
|
+
- lib
|
82
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0'
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
requirements: []
|
93
|
+
rubyforge_project:
|
94
|
+
rubygems_version: 2.4.1
|
95
|
+
signing_key:
|
96
|
+
specification_version: 4
|
97
|
+
summary: Creates a deployment status page.
|
98
|
+
test_files: []
|