cdexec 0.2.0 → 0.2.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/.ruby +6 -2
- data/HISTORY.rdoc +8 -0
- data/MANIFEST +3 -3
- data/man/{cdexe.1.ronn → cdexec.1.ronn} +11 -1
- data/ruby.yaml +4 -1
- data/site/index.html +139 -0
- metadata +15 -3
data/.ruby
CHANGED
@@ -5,7 +5,11 @@ authors:
|
|
5
5
|
copyrights: []
|
6
6
|
replacements: []
|
7
7
|
conflicts: []
|
8
|
-
requirements:
|
8
|
+
requirements:
|
9
|
+
- name: detroit
|
10
|
+
groups:
|
11
|
+
- build
|
12
|
+
development: true
|
9
13
|
dependencies: []
|
10
14
|
repositories: []
|
11
15
|
resources:
|
@@ -16,7 +20,7 @@ load_path:
|
|
16
20
|
extra: {}
|
17
21
|
name: cdexec
|
18
22
|
title: cdexec
|
19
|
-
version: 0.2.
|
23
|
+
version: 0.2.1
|
20
24
|
summary: Multi-execute over directories
|
21
25
|
description: Execute shell commands in multiple-subdirectories.
|
22
26
|
source:
|
data/HISTORY.rdoc
CHANGED
data/MANIFEST
CHANGED
@@ -7,6 +7,7 @@ The `cdexec` command allows shell commands to be executed over a selection
|
|
7
7
|
of file directories. This is convenient for working with mutliple projects
|
8
8
|
in bulk.
|
9
9
|
|
10
|
+
|
10
11
|
## OPTIONS
|
11
12
|
|
12
13
|
The `cdexec` command is quite simple to use and there are only a few options:
|
@@ -17,6 +18,7 @@ The `cdexec` command is quite simple to use and there are only a few options:
|
|
17
18
|
* `-h`/`--help`
|
18
19
|
Show this help message.
|
19
20
|
|
21
|
+
|
20
22
|
## EXAMPLES
|
21
23
|
|
22
24
|
There are plenty of uses for gitexec. Here are examples of a few that
|
@@ -38,10 +40,18 @@ Running tests on multiple projects.
|
|
38
40
|
All of these example relate to software development. No doubt there
|
39
41
|
are many other application.
|
40
42
|
|
43
|
+
|
44
|
+
## RESOURCES
|
45
|
+
|
46
|
+
* [API Documentation](http://rubydoc.info/gems/cdexec/frames)
|
47
|
+
* [Issue Tracker](http://github.com/rubyworks/cdexec/issues)
|
48
|
+
* [Source Code](http://github.com/rubyworks/cdexec)
|
49
|
+
|
50
|
+
|
41
51
|
## COPYING
|
42
52
|
|
43
53
|
Copyright (c) 2011 Thomas Sawyer, Rubyworks
|
44
54
|
|
45
|
-
This program is distributable in accordance
|
55
|
+
This program is distributable in accordance with the terms of the
|
46
56
|
*FreeBSD* license.
|
47
57
|
|
data/ruby.yaml
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
---
|
2
|
-
version : 0.2.
|
2
|
+
version : 0.2.1
|
3
3
|
name : cdexec
|
4
4
|
title : cdexec
|
5
5
|
summary : Multi-execute over directories
|
@@ -10,6 +10,9 @@ description:
|
|
10
10
|
authors:
|
11
11
|
- Thomas Sawyer <transfire@gmail.com>
|
12
12
|
|
13
|
+
requirements:
|
14
|
+
- detroit (build)
|
15
|
+
|
13
16
|
resources:
|
14
17
|
home: http://rubyworks.github.com/cdexec
|
15
18
|
code: http://github.com/rubyworks/cdexec
|
data/site/index.html
ADDED
@@ -0,0 +1,139 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv='content-type' value='text/html;charset=utf8'>
|
5
|
+
<meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
|
6
|
+
<title>cdexec(1) - Iterate command execution over multiple directories</title>
|
7
|
+
<style type='text/css' media='all'>
|
8
|
+
/* style: man */
|
9
|
+
body#manpage {margin:0}
|
10
|
+
.mp {max-width:100ex;padding:0 9ex 1ex 4ex}
|
11
|
+
.mp p,.mp pre,.mp ul,.mp ol,.mp dl {margin:0 0 20px 0}
|
12
|
+
.mp h2 {margin:10px 0 0 0}
|
13
|
+
.mp > p,.mp > pre,.mp > ul,.mp > ol,.mp > dl {margin-left:8ex}
|
14
|
+
.mp h3 {margin:0 0 0 4ex}
|
15
|
+
.mp dt {margin:0;clear:left}
|
16
|
+
.mp dt.flush {float:left;width:8ex}
|
17
|
+
.mp dd {margin:0 0 0 9ex}
|
18
|
+
.mp h1,.mp h2,.mp h3,.mp h4 {clear:left}
|
19
|
+
.mp pre {margin-bottom:20px}
|
20
|
+
.mp pre+h2,.mp pre+h3 {margin-top:22px}
|
21
|
+
.mp h2+pre,.mp h3+pre {margin-top:5px}
|
22
|
+
.mp img {display:block;margin:auto}
|
23
|
+
.mp h1.man-title {display:none}
|
24
|
+
.mp,.mp code,.mp pre,.mp tt,.mp kbd,.mp samp,.mp h3,.mp h4 {font-family:monospace;font-size:14px;line-height:1.42857142857143}
|
25
|
+
.mp h2 {font-size:16px;line-height:1.25}
|
26
|
+
.mp h1 {font-size:20px;line-height:2}
|
27
|
+
.mp {text-align:justify;background:#fff}
|
28
|
+
.mp,.mp code,.mp pre,.mp pre code,.mp tt,.mp kbd,.mp samp {color:#131211}
|
29
|
+
.mp h1,.mp h2,.mp h3,.mp h4 {color:#030201}
|
30
|
+
.mp u {text-decoration:underline}
|
31
|
+
.mp code,.mp strong,.mp b {font-weight:bold;color:#131211}
|
32
|
+
.mp em,.mp var {font-style:italic;color:#232221;text-decoration:none}
|
33
|
+
.mp a,.mp a:link,.mp a:hover,.mp a code,.mp a pre,.mp a tt,.mp a kbd,.mp a samp {color:#0000ff}
|
34
|
+
.mp b.man-ref {font-weight:normal;color:#434241}
|
35
|
+
.mp pre {padding:0 4ex}
|
36
|
+
.mp pre code {font-weight:normal;color:#434241}
|
37
|
+
.mp h2+pre,h3+pre {padding-left:0}
|
38
|
+
ol.man-decor,ol.man-decor li {margin:3px 0 10px 0;padding:0;float:left;width:33%;list-style-type:none;text-transform:uppercase;color:#999;letter-spacing:1px}
|
39
|
+
ol.man-decor {width:100%}
|
40
|
+
ol.man-decor li.tl {text-align:left}
|
41
|
+
ol.man-decor li.tc {text-align:center;letter-spacing:4px}
|
42
|
+
ol.man-decor li.tr {text-align:right;float:right}
|
43
|
+
</style>
|
44
|
+
</head>
|
45
|
+
<!--
|
46
|
+
The following styles are deprecated and will be removed at some point:
|
47
|
+
div#man, div#man ol.man, div#man ol.head, div#man ol.man.
|
48
|
+
|
49
|
+
The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
|
50
|
+
.man-navigation should be used instead.
|
51
|
+
-->
|
52
|
+
<body id='manpage'>
|
53
|
+
<div class='mp' id='man'>
|
54
|
+
|
55
|
+
<div class='man-navigation' style='display:none'>
|
56
|
+
<a href="#NAME">NAME</a>
|
57
|
+
<a href="#DESCRIPTION">DESCRIPTION</a>
|
58
|
+
<a href="#OPTIONS">OPTIONS</a>
|
59
|
+
<a href="#EXAMPLES">EXAMPLES</a>
|
60
|
+
<a href="#RESOURCES">RESOURCES</a>
|
61
|
+
<a href="#COPYING">COPYING</a>
|
62
|
+
</div>
|
63
|
+
|
64
|
+
<ol class='man-decor man-head man head'>
|
65
|
+
<li class='tl'>cdexec(1)</li>
|
66
|
+
<li class='tc'></li>
|
67
|
+
<li class='tr'>cdexec(1)</li>
|
68
|
+
</ol>
|
69
|
+
|
70
|
+
<h2 id="NAME">NAME</h2>
|
71
|
+
<p class="man-name">
|
72
|
+
<code>cdexec</code> - <span class="man-whatis">Iterate command execution over multiple directories</span>
|
73
|
+
</p>
|
74
|
+
|
75
|
+
<h2 id="DESCRIPTION">DESCRIPTION</h2>
|
76
|
+
|
77
|
+
<p>The <code>cdexec</code> command allows shell commands to be executed over a selection
|
78
|
+
of file directories. This is convenient for working with mutliple projects
|
79
|
+
in bulk.</p>
|
80
|
+
|
81
|
+
<h2 id="OPTIONS">OPTIONS</h2>
|
82
|
+
|
83
|
+
<p>The <code>cdexec</code> command is quite simple to use and there are only a few options:</p>
|
84
|
+
|
85
|
+
<ul>
|
86
|
+
<li><p><code>-t</code>/<code>--trace</code>
|
87
|
+
Display the name of each directory as it is changed into.</p></li>
|
88
|
+
<li><p><code>-h</code>/<code>--help</code>
|
89
|
+
Show this help message.</p></li>
|
90
|
+
</ul>
|
91
|
+
|
92
|
+
|
93
|
+
<h2 id="EXAMPLES">EXAMPLES</h2>
|
94
|
+
|
95
|
+
<p>There are plenty of uses for gitexec. Here are examples of a few that
|
96
|
+
have proven handy to the developers of cdexec.</p>
|
97
|
+
|
98
|
+
<p>Check the git status of a set of projects.</p>
|
99
|
+
|
100
|
+
<p> $ cdexec */ - git status</p>
|
101
|
+
|
102
|
+
<p>Running spellcheck on multiple project READMEs.</p>
|
103
|
+
|
104
|
+
<p> $ cdexec <em>/ - aspell check README.rdoc
|
105
|
+
$ cdexec </em>/ - rm README.rdoc.bak</p>
|
106
|
+
|
107
|
+
<p>Running tests on multiple projects.</p>
|
108
|
+
|
109
|
+
<p> $ cdexec */ - rake test</p>
|
110
|
+
|
111
|
+
<p>All of these example relate to software development. No doubt there
|
112
|
+
are many other application.</p>
|
113
|
+
|
114
|
+
<h2 id="RESOURCES">RESOURCES</h2>
|
115
|
+
|
116
|
+
<ul>
|
117
|
+
<li><a href="http://rubydoc.info/gems/cdexec/frames">API Documentation</a></li>
|
118
|
+
<li><a href="http://github.com/rubyworks/cdexec/issues">Issue Tracker</a></li>
|
119
|
+
<li><a href="http://github.com/rubyworks/cdexec">Source Code</a></li>
|
120
|
+
</ul>
|
121
|
+
|
122
|
+
|
123
|
+
<h2 id="COPYING">COPYING</h2>
|
124
|
+
|
125
|
+
<p>Copyright (c) 2011 Thomas Sawyer, Rubyworks</p>
|
126
|
+
|
127
|
+
<p>This program is distributable in accordance with the terms of the
|
128
|
+
<em>FreeBSD</em> license.</p>
|
129
|
+
|
130
|
+
|
131
|
+
<ol class='man-decor man-foot man foot'>
|
132
|
+
<li class='tl'></li>
|
133
|
+
<li class='tc'>October 2011</li>
|
134
|
+
<li class='tr'>cdexec(1)</li>
|
135
|
+
</ol>
|
136
|
+
|
137
|
+
</div>
|
138
|
+
</body>
|
139
|
+
</html>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cdexec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,18 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
date: 2011-10-20 00:00:00.000000000 Z
|
13
|
-
dependencies:
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: detroit
|
16
|
+
requirement: &23361000 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *23361000
|
14
25
|
description: Execute shell commands in multiple-subdirectories.
|
15
26
|
email:
|
16
27
|
- transfire@gmail.com
|
@@ -34,8 +45,9 @@ files:
|
|
34
45
|
- bin/cdexec
|
35
46
|
- lib/cdexec.rb
|
36
47
|
- main.reap
|
37
|
-
- man/
|
48
|
+
- man/cdexec.1.ronn
|
38
49
|
- ruby.yaml
|
50
|
+
- site/index.html
|
39
51
|
homepage: http://rubyworks.github.com/cdexec
|
40
52
|
licenses: []
|
41
53
|
post_install_message:
|