update_repo 0.9.5 → 0.9.6
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.
- checksums.yaml +4 -4
- data/.codeclimate.yml +31 -0
- data/.csslintrc +2 -0
- data/.eslintignore +1 -0
- data/.eslintrc.yml +277 -0
- data/.gitignore +2 -0
- data/.reek +3 -0
- data/.rubocop.yml +7 -0
- data/.travis.yml +4 -4
- data/README.md +53 -2
- data/Vagrantfile +11 -0
- data/WEBSITE.md +73 -0
- data/docs/CNAME +2 -0
- data/docs/css/site.css +9485 -0
- data/docs/fonts/FontAwesome.otf +0 -0
- data/docs/fonts/fontawesome-webfont.eot +0 -0
- data/docs/fonts/fontawesome-webfont.svg +2671 -0
- data/docs/fonts/fontawesome-webfont.ttf +0 -0
- data/docs/fonts/fontawesome-webfont.woff +0 -0
- data/docs/fonts/fontawesome-webfont.woff2 +0 -0
- data/docs/fonts/glyphicons-halflings-regular.eot +0 -0
- data/docs/fonts/glyphicons-halflings-regular.svg +288 -0
- data/docs/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/docs/fonts/glyphicons-halflings-regular.woff +0 -0
- data/docs/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/docs/index.html +554 -0
- data/docs/js/main.js +13669 -0
- data/lib/update_repo.rb +1 -1
- data/lib/update_repo/cmd_config.rb +10 -8
- data/lib/update_repo/console_output.rb +2 -2
- data/lib/update_repo/git_control.rb +27 -7
- data/lib/update_repo/logger.rb +1 -1
- data/lib/update_repo/version.rb +1 -1
- data/update_repo.gemspec +1 -0
- data/vagrant-support/bootstrap-sudo.sh +14 -0
- data/vagrant-support/bootstrap.sh +37 -0
- data/web/.nvmrc +1 -0
- data/web/.scss-lint.yml +45 -0
- data/web/gulpfile.js +133 -0
- data/web/index.html +260 -0
- data/web/js/scripts.js +2 -0
- data/web/js/site.js +7 -0
- data/web/package.json +48 -0
- data/web/partials/_contribute.html +22 -0
- data/web/partials/_footer.html +16 -0
- data/web/partials/_header.html +25 -0
- data/web/partials/_license.html +38 -0
- data/web/partials/_navbar.html +24 -0
- data/web/sass/partials/_colors.scss +36 -0
- data/web/sass/partials/_fonts.scss +3 -0
- data/web/sass/partials/_mixins.scss +8 -0
- data/web/sass/partials/_variables.scss +3 -0
- data/web/sass/site.scss +263 -0
- data/web/webdata.json +112 -0
- metadata +44 -3
data/web/webdata.json
ADDED
@@ -0,0 +1,112 @@
|
|
1
|
+
{
|
2
|
+
"switches": [
|
3
|
+
{
|
4
|
+
"title" : "Color",
|
5
|
+
"text" : "Determines if the output will be displayed in color or not. Default is TRUE. Note that regardless of this setting, when one of the '--dump-*' options is specified output will not be in color. No color codes will be saved to the logfile either.",
|
6
|
+
"equivalent" : "color:",
|
7
|
+
"long-form" : "--color",
|
8
|
+
"short-form" : "-c",
|
9
|
+
"negative" : "--no-color",
|
10
|
+
"default" : "true"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"title" : "Dump",
|
14
|
+
"text" : "Dumps a CSV file of each directory and its associated git remote URL to the console, and to the logfile if that is enabled.",
|
15
|
+
"equivalent" : "",
|
16
|
+
"long-form" : "--dump",
|
17
|
+
"short-form" : "-d",
|
18
|
+
"negative" : "",
|
19
|
+
"default" : "false"
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"title" : "Prune",
|
23
|
+
"text" : "Used in conjunction with the --dump option to remove the first <integer> directory levels from the output. This will enable it to be imported back into a different directory structure.",
|
24
|
+
"equivalent" : "prune:",
|
25
|
+
"long-form" : "--prune",
|
26
|
+
"short-form" : "-p",
|
27
|
+
"negative" : "",
|
28
|
+
"default" : "0"
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"title" : "Log",
|
32
|
+
"text" : "Copies all script output to a logfile as well as STDOUT. The default logfile name is 'updaterepo.log' in the current users home directory. The previous log will be overwritten, but see the next option.",
|
33
|
+
"equivalent" : "log:",
|
34
|
+
"long-form" : "--log",
|
35
|
+
"short-form" : "-l",
|
36
|
+
"negative" : "--no-log",
|
37
|
+
"default" : "false"
|
38
|
+
},
|
39
|
+
{
|
40
|
+
"title" : "Timestamp",
|
41
|
+
"text" : "Used in conjunction with the --log option to rename the logfile with an added timestamp, thus not overwriting older logs",
|
42
|
+
"equivalent" : "timestamp:",
|
43
|
+
"long-form" : "--timestamp",
|
44
|
+
"short-form" : "-t",
|
45
|
+
"negative" : "--no-timestamp",
|
46
|
+
"default" : "false"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"title" : "Log Local",
|
50
|
+
"text" : "Store the logfile (if this is enabled) in the current working directory instead of the Users' Home directory",
|
51
|
+
"equivalent" : "log_local:",
|
52
|
+
"long-form" : "--log-local",
|
53
|
+
"short-form" : "-g",
|
54
|
+
"negative" : "--no-log-local",
|
55
|
+
"default" : "false"
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"title" : "Verbose",
|
59
|
+
"text" : "Display all raw Git output plus repository URL and location instead of the reduced output in the default mode. Note that the short-form command is the UPERCASE 'V' not lower!",
|
60
|
+
"equivalent" : "verbose:",
|
61
|
+
"long-form" : "--verbose",
|
62
|
+
"short-form" : "-V",
|
63
|
+
"negative" : "--no-verbose",
|
64
|
+
"default" : "false"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"title" : "Verbose Errors",
|
68
|
+
"text" : "List all the error output from a failing command in the summary, not just the first line",
|
69
|
+
"equivalent" : "verbose_errors:",
|
70
|
+
"long-form" : "--verbose-errors",
|
71
|
+
"short-form" : "-E",
|
72
|
+
"negative" : "--no-verbose-errors",
|
73
|
+
"default" : "false"
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"title" : "Quiet",
|
77
|
+
"text" : "No output will be displayed to screen during the running of script, except for any fatal errors.",
|
78
|
+
"equivalent" : "quiet:",
|
79
|
+
"long-form" : "--quiet",
|
80
|
+
"short-form" : "-q",
|
81
|
+
"negative" : "--no-quiet",
|
82
|
+
"default" : "false"
|
83
|
+
},
|
84
|
+
{
|
85
|
+
"title" : "Dump Remotes",
|
86
|
+
"text" : "Dumps a bare list to the console of all the Git remote URL's found in the specified directories. This can be saved by redirecting to file or using the --log option.",
|
87
|
+
"equivalent" : "",
|
88
|
+
"long-form" : "--dump-remotes",
|
89
|
+
"short-form" : "-r",
|
90
|
+
"negative" : "",
|
91
|
+
"default" : "false"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"title" : "Version",
|
95
|
+
"text" : "Displays the current version number then terminates. All other options will be ignored.",
|
96
|
+
"equivalent" : "",
|
97
|
+
"long-form" : "--version",
|
98
|
+
"short-form" : "-v",
|
99
|
+
"negative" : "",
|
100
|
+
"default" : "false"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"title" : "Help",
|
104
|
+
"text" : "Displays a brief help text listing syntax and availiable switches then terminates. All other options will be ignored.",
|
105
|
+
"equivalent" : "",
|
106
|
+
"long-form" : "--help",
|
107
|
+
"short-form" : "-h",
|
108
|
+
"negative" : "",
|
109
|
+
"default" : "false"
|
110
|
+
}
|
111
|
+
]
|
112
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: update_repo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Grant Ramsay
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-05-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -256,6 +256,10 @@ executables:
|
|
256
256
|
extensions: []
|
257
257
|
extra_rdoc_files: []
|
258
258
|
files:
|
259
|
+
- ".codeclimate.yml"
|
260
|
+
- ".csslintrc"
|
261
|
+
- ".eslintignore"
|
262
|
+
- ".eslintrc.yml"
|
259
263
|
- ".gitignore"
|
260
264
|
- ".pullreview.yml"
|
261
265
|
- ".reek"
|
@@ -266,9 +270,26 @@ files:
|
|
266
270
|
- LICENSE.txt
|
267
271
|
- README.md
|
268
272
|
- Rakefile
|
273
|
+
- Vagrantfile
|
274
|
+
- WEBSITE.md
|
269
275
|
- bin/console
|
270
276
|
- bin/setup
|
271
277
|
- bin/update_repo
|
278
|
+
- docs/CNAME
|
279
|
+
- docs/css/site.css
|
280
|
+
- docs/fonts/FontAwesome.otf
|
281
|
+
- docs/fonts/fontawesome-webfont.eot
|
282
|
+
- docs/fonts/fontawesome-webfont.svg
|
283
|
+
- docs/fonts/fontawesome-webfont.ttf
|
284
|
+
- docs/fonts/fontawesome-webfont.woff
|
285
|
+
- docs/fonts/fontawesome-webfont.woff2
|
286
|
+
- docs/fonts/glyphicons-halflings-regular.eot
|
287
|
+
- docs/fonts/glyphicons-halflings-regular.svg
|
288
|
+
- docs/fonts/glyphicons-halflings-regular.ttf
|
289
|
+
- docs/fonts/glyphicons-halflings-regular.woff
|
290
|
+
- docs/fonts/glyphicons-halflings-regular.woff2
|
291
|
+
- docs/index.html
|
292
|
+
- docs/js/main.js
|
272
293
|
- exe/update_repo
|
273
294
|
- lib/update_repo.rb
|
274
295
|
- lib/update_repo/cmd_config.rb
|
@@ -279,6 +300,26 @@ files:
|
|
279
300
|
- lib/update_repo/metrics.rb
|
280
301
|
- lib/update_repo/version.rb
|
281
302
|
- update_repo.gemspec
|
303
|
+
- vagrant-support/bootstrap-sudo.sh
|
304
|
+
- vagrant-support/bootstrap.sh
|
305
|
+
- web/.nvmrc
|
306
|
+
- web/.scss-lint.yml
|
307
|
+
- web/gulpfile.js
|
308
|
+
- web/index.html
|
309
|
+
- web/js/scripts.js
|
310
|
+
- web/js/site.js
|
311
|
+
- web/package.json
|
312
|
+
- web/partials/_contribute.html
|
313
|
+
- web/partials/_footer.html
|
314
|
+
- web/partials/_header.html
|
315
|
+
- web/partials/_license.html
|
316
|
+
- web/partials/_navbar.html
|
317
|
+
- web/sass/partials/_colors.scss
|
318
|
+
- web/sass/partials/_fonts.scss
|
319
|
+
- web/sass/partials/_mixins.scss
|
320
|
+
- web/sass/partials/_variables.scss
|
321
|
+
- web/sass/site.scss
|
322
|
+
- web/webdata.json
|
282
323
|
homepage: http://updaterepo.seapagan.net
|
283
324
|
licenses:
|
284
325
|
- MIT
|
@@ -299,7 +340,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
299
340
|
version: '0'
|
300
341
|
requirements: []
|
301
342
|
rubyforge_project:
|
302
|
-
rubygems_version: 2.6.
|
343
|
+
rubygems_version: 2.6.11
|
303
344
|
signing_key:
|
304
345
|
specification_version: 4
|
305
346
|
summary: A Simple Gem to keep multiple locally-cloned Git Repositories up to date
|