blazing 0.0.6 → 0.0.7
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/Gemfile +5 -3
- data/Gemfile.lock +27 -26
- data/README.md +3 -1
- data/Rakefile +3 -0
- data/lib/blazing.rb +3 -1
- data/lib/blazing/cli/base.rb +32 -14
- data/lib/blazing/cli/create.rb +11 -2
- data/lib/blazing/cli/hook.rb +7 -5
- data/lib/blazing/config.rb +7 -7
- data/lib/blazing/logger.rb +13 -106
- data/lib/blazing/recipe.rb +4 -11
- data/lib/blazing/recipes/bundler_recipe.rb +2 -0
- data/lib/blazing/recipes/rvm_recipe.rb +2 -0
- data/lib/blazing/remote.rb +50 -45
- data/lib/blazing/runner.rb +5 -0
- data/lib/blazing/target.rb +55 -23
- data/lib/blazing/version.rb +1 -1
- data/spec/blazing/cli/base_spec.rb +102 -0
- data/spec/blazing/cli/create_spec.rb +26 -0
- data/spec/blazing/cli/hook_spec.rb +16 -0
- data/spec/blazing/config_spec.rb +82 -0
- data/spec/blazing/logger_spec.rb +50 -0
- data/spec/blazing/recipe_spec.rb +13 -8
- data/spec/blazing/recipes/bundler_recipe_spec.rb +6 -0
- data/spec/blazing/recipes/passenger_recipe_spec.rb +6 -0
- data/spec/blazing/recipes/rvm_recipe_spec.rb +6 -0
- data/spec/blazing/remote_spec.rb +126 -3
- data/spec/blazing/runner_spec.rb +9 -0
- data/spec/blazing/target_spec.rb +110 -0
- data/spec/spec_helper.rb +7 -3
- data/spec/support/config.rb +0 -0
- metadata +25 -3
- data/index.html +0 -111
data/index.html
DELETED
@@ -1,111 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<meta charset='utf-8'>
|
5
|
-
|
6
|
-
<title>effkay/blazing @ GitHub</title>
|
7
|
-
|
8
|
-
<style type="text/css">
|
9
|
-
body {
|
10
|
-
margin-top: 1.0em;
|
11
|
-
background-color: #e7600d;
|
12
|
-
font-family: Helvetica, Arial, FreeSans, san-serif;
|
13
|
-
color: #ffffff;
|
14
|
-
}
|
15
|
-
#container {
|
16
|
-
margin: 0 auto;
|
17
|
-
width: 700px;
|
18
|
-
}
|
19
|
-
h1 { font-size: 3.8em; color: #189ff2; margin-bottom: 3px; }
|
20
|
-
h1 .small { font-size: 0.4em; }
|
21
|
-
h1 a { text-decoration: none }
|
22
|
-
h2 { font-size: 1.5em; color: #189ff2; }
|
23
|
-
h3 { text-align: center; color: #189ff2; }
|
24
|
-
a { color: #189ff2; }
|
25
|
-
.description { font-size: 1.2em; margin-bottom: 30px; margin-top: 30px; font-style: italic;}
|
26
|
-
.download { float: right; }
|
27
|
-
pre { background: #000; color: #fff; padding: 15px;}
|
28
|
-
hr { border: 0; width: 80%; border-bottom: 1px solid #aaa}
|
29
|
-
.footer { text-align:center; padding-top:30px; font-style: italic; }
|
30
|
-
</style>
|
31
|
-
</head>
|
32
|
-
|
33
|
-
<body>
|
34
|
-
<a href="http://github.com/effkay/blazing"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
|
35
|
-
|
36
|
-
<div id="container">
|
37
|
-
|
38
|
-
<div class="download">
|
39
|
-
<a href="http://github.com/effkay/blazing/zipball/master">
|
40
|
-
<img border="0" width="90" src="http://github.com/images/modules/download/zip.png"></a>
|
41
|
-
<a href="http://github.com/effkay/blazing/tarball/master">
|
42
|
-
<img border="0" width="90" src="http://github.com/images/modules/download/tar.png"></a>
|
43
|
-
</div>
|
44
|
-
|
45
|
-
<h1><a href="http://github.com/effkay/blazing">blazing</a>
|
46
|
-
<span class="small">by <a href="http://github.com/effkay">effkay</a></span></h1>
|
47
|
-
|
48
|
-
<div class="description">
|
49
|
-
git push deployments
|
50
|
-
</div>
|
51
|
-
|
52
|
-
<p>blahblahmainproject text</p><h2>Dependencies</h2>
|
53
|
-
<p>heregoesdependencies</p>
|
54
|
-
<h2>Install</h2>
|
55
|
-
<p>heregoesinstallinstructions</p>
|
56
|
-
<h2>License</h2>
|
57
|
-
<p>Copyright (c) 2011 Felipe Kaufmann
|
58
|
-
|
59
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
60
|
-
a copy of this software and associated documentation files (the
|
61
|
-
"Software"), to deal in the Software without restriction, including
|
62
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
63
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
64
|
-
permit persons to whom the Software is furnished to do so, subject to
|
65
|
-
the following conditions:
|
66
|
-
|
67
|
-
The above copyright notice and this permission notice shall be
|
68
|
-
included in all copies or substantial portions of the Software.
|
69
|
-
|
70
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
71
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
72
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
73
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
74
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
75
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
76
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
77
|
-
</p>
|
78
|
-
<h2>Authors</h2>
|
79
|
-
<p>Felipe Kaufmann (felipekaufmann@gmail.com)
|
80
|
-
<h2>Contact</h2>
|
81
|
-
<p>Felipe Kaufmann (felipekaufmann@gmail.com)
|
82
|
-
|
83
|
-
|
84
|
-
<h2>Download</h2>
|
85
|
-
<p>
|
86
|
-
You can download this project in either
|
87
|
-
<a href="http://github.com/effkay/blazing/zipball/master">zip</a> or
|
88
|
-
<a href="http://github.com/effkay/blazing/tarball/master">tar</a> formats.
|
89
|
-
</p>
|
90
|
-
<p>You can also clone the project with <a href="http://git-scm.com">Git</a>
|
91
|
-
by running:
|
92
|
-
<pre>$ git clone git://github.com/effkay/blazing</pre>
|
93
|
-
</p>
|
94
|
-
|
95
|
-
<div class="footer">
|
96
|
-
get the source code on GitHub : <a href="http://github.com/effkay/blazing">effkay/blazing</a>
|
97
|
-
</div>
|
98
|
-
|
99
|
-
</div>
|
100
|
-
|
101
|
-
<script type="text/javascript">
|
102
|
-
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
103
|
-
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
104
|
-
</script>
|
105
|
-
<script type="text/javascript">
|
106
|
-
try {
|
107
|
-
var pageTracker = _gat._getTracker("UA-757870-3");
|
108
|
-
pageTracker._trackPageview();
|
109
|
-
} catch(err) {}</script>
|
110
|
-
</body>
|
111
|
-
</html>
|