gemstash 1.0.2 → 1.0.3
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/CHANGELOG.md +11 -0
- data/lib/gemstash/cli.rb +46 -0
- data/lib/gemstash/cli/setup.rb +1 -1
- data/lib/gemstash/env.rb +5 -0
- data/lib/gemstash/man/gemstash-authorize.1 +50 -0
- data/lib/gemstash/man/gemstash-authorize.1.txt +45 -0
- data/lib/gemstash/man/gemstash-configuration.5 +133 -0
- data/lib/gemstash/man/gemstash-configuration.5.txt +121 -0
- data/lib/gemstash/man/gemstash-customize.7 +224 -0
- data/lib/gemstash/man/gemstash-customize.7.txt +137 -0
- data/lib/gemstash/man/gemstash-debugging.7 +34 -0
- data/lib/gemstash/man/gemstash-debugging.7.txt +29 -0
- data/lib/gemstash/man/gemstash-deploy.7 +40 -0
- data/lib/gemstash/man/gemstash-deploy.7.txt +34 -0
- data/lib/gemstash/man/gemstash-mirror.7 +40 -0
- data/lib/gemstash/man/gemstash-mirror.7.txt +33 -0
- data/lib/gemstash/man/gemstash-multiple-sources.7 +89 -0
- data/lib/gemstash/man/gemstash-multiple-sources.7.txt +71 -0
- data/lib/gemstash/man/gemstash-private-gems.7 +195 -0
- data/lib/gemstash/man/gemstash-private-gems.7.txt +133 -0
- data/lib/gemstash/man/gemstash-readme.7 +204 -0
- data/lib/gemstash/man/gemstash-readme.7.txt +160 -0
- data/lib/gemstash/man/gemstash-setup.1 +41 -0
- data/lib/gemstash/man/gemstash-setup.1.txt +38 -0
- data/lib/gemstash/man/gemstash-start.1 +25 -0
- data/lib/gemstash/man/gemstash-start.1.txt +25 -0
- data/lib/gemstash/man/gemstash-status.1 +19 -0
- data/lib/gemstash/man/gemstash-status.1.txt +21 -0
- data/lib/gemstash/man/gemstash-stop.1 +19 -0
- data/lib/gemstash/man/gemstash-stop.1.txt +21 -0
- data/lib/gemstash/man/gemstash-version.1 +22 -0
- data/lib/gemstash/man/gemstash-version.1.txt +21 -0
- data/lib/gemstash/storage.rb +7 -4
- data/lib/gemstash/version.rb +1 -1
- metadata +79 -48
- data/Gemfile +0 -4
- data/README.md +0 -161
- data/Rakefile +0 -25
- data/bin/console +0 -14
- data/bin/gemstash +0 -3
- data/bin/setup +0 -5
- data/docs/config.md +0 -136
- data/docs/debug.md +0 -24
- data/docs/deploy.md +0 -30
- data/docs/mirror.md +0 -30
- data/docs/multiple_sources.md +0 -68
- data/docs/private_gems.md +0 -140
- data/docs/reference.md +0 -323
- data/gemstash.gemspec +0 -49
- data/gemstash.png +0 -0
- data/rake/changelog.citrus +0 -157
- data/rake/changelog.rb +0 -201
- data/rake/table_of_contents.rb +0 -36
@@ -0,0 +1,41 @@
|
|
1
|
+
.\" Automatically generated by Pandoc 1.16.0.2
|
2
|
+
.\"
|
3
|
+
.TH "gemstash\-setup" "1" "October 9, 2015" "" ""
|
4
|
+
.hy
|
5
|
+
.SH NAME
|
6
|
+
.PP
|
7
|
+
gemstash\-setup \- Customize your Gemstash configuration interactively
|
8
|
+
.SH SYNOPSIS
|
9
|
+
.PP
|
10
|
+
\f[C]gemstash\ setup\ [\-\-redo]\ [\-\-debug]\ [\-\-config\-file\ FILE]\f[]
|
11
|
+
.SH DESCRIPTION
|
12
|
+
.PP
|
13
|
+
Customize your Gemstash configuration interactively.
|
14
|
+
This will save your config file, but only if a few checks pass after
|
15
|
+
you\[aq]ve provided your answers.
|
16
|
+
.SS USAGE
|
17
|
+
.IP
|
18
|
+
.nf
|
19
|
+
\f[C]
|
20
|
+
gemstash\ setup
|
21
|
+
gemstash\ setup\ \-\-redo
|
22
|
+
gemstash\ setup\ \-\-config\-file\ <file>
|
23
|
+
\f[]
|
24
|
+
.fi
|
25
|
+
.SH OPTIONS
|
26
|
+
.IP \[bu] 2
|
27
|
+
\f[C]\-\-redo\f[]: Redo the configuration.
|
28
|
+
This does nothing the first time \f[C]gemstash\ setup\f[] is run.
|
29
|
+
If you want to change your configuration using \f[C]gemstash\ setup\f[]
|
30
|
+
after you\[aq]ve run it before, you must provide this option, otherwise
|
31
|
+
Gemstash will simply indicate your setup is complete.
|
32
|
+
.IP \[bu] 2
|
33
|
+
\f[C]\-\-debug\f[]: Output additional information if one of the checks
|
34
|
+
at the end of setup fails.
|
35
|
+
This will do nothing if all checks pass.
|
36
|
+
.IP \[bu] 2
|
37
|
+
\f[C]\-\-config\-file\ FILE\f[]: Specify the config file to write to.
|
38
|
+
Without this option, your configuration will be written to
|
39
|
+
\f[C]~/.gemstash/config.yml\f[].
|
40
|
+
If you write to a custom location, you will need to pass the
|
41
|
+
\f[C]\-\-config\-file\f[] option to all Gemstash commands.
|
@@ -0,0 +1,38 @@
|
|
1
|
+
gemstash-setup(1) gemstash-setup(1)
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
NAME
|
6
|
+
gemstash-setup - Customize your Gemstash configuration interactively
|
7
|
+
|
8
|
+
SYNOPSIS
|
9
|
+
gemstash setup [--redo] [--debug] [--config-file FILE]
|
10
|
+
|
11
|
+
DESCRIPTION
|
12
|
+
Customize your Gemstash configuration interactively. This will save
|
13
|
+
your config file, but only if a few checks pass after you've provided
|
14
|
+
your answers.
|
15
|
+
|
16
|
+
USAGE
|
17
|
+
gemstash setup
|
18
|
+
gemstash setup --redo
|
19
|
+
gemstash setup --config-file <file>
|
20
|
+
|
21
|
+
OPTIONS
|
22
|
+
o --redo: Redo the configuration. This does nothing the first time
|
23
|
+
gemstash setup is run. If you want to change your configuration us-
|
24
|
+
ing gemstash setup after you've run it before, you must provide this
|
25
|
+
option, otherwise Gemstash will simply indicate your setup is com-
|
26
|
+
plete.
|
27
|
+
|
28
|
+
o --debug: Output additional information if one of the checks at the
|
29
|
+
end of setup fails. This will do nothing if all checks pass.
|
30
|
+
|
31
|
+
o --config-file FILE: Specify the config file to write to. Without
|
32
|
+
this option, your configuration will be written to ~/.gemstash/con-
|
33
|
+
fig.yml. If you write to a custom location, you will need to pass
|
34
|
+
the --config-file option to all Gemstash commands.
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
October 9, 2015 gemstash-setup(1)
|
@@ -0,0 +1,25 @@
|
|
1
|
+
.\" Automatically generated by Pandoc 1.16.0.2
|
2
|
+
.\"
|
3
|
+
.TH "gemstash\-start" "1" "October 9, 2015" "" ""
|
4
|
+
.hy
|
5
|
+
.SH NAME
|
6
|
+
.PP
|
7
|
+
gemstash\-start \- Starts the Gemstash server
|
8
|
+
.SH SYNOPSIS
|
9
|
+
.PP
|
10
|
+
\f[C]gemstash\ start\ [\-\-no\-daemonize]\ [\-\-config\-file\ FILE]\f[]
|
11
|
+
.SH DESCRIPTION
|
12
|
+
.PP
|
13
|
+
Starts the Gemstash server.
|
14
|
+
.SH OPTIONS
|
15
|
+
.IP \[bu] 2
|
16
|
+
\f[C]\-\-config\-file\ FILE\f[]: Specify the config file to use.
|
17
|
+
If you aren\[aq]t using the default config file at
|
18
|
+
\f[C]~/.gemstash/config.yml\f[], then you must specify the config file
|
19
|
+
via this option.
|
20
|
+
.IP \[bu] 2
|
21
|
+
\f[C]\-\-no\-daemonize\f[]: The Gemstash server daemonizes itself by
|
22
|
+
default.
|
23
|
+
Provide this option to instead run the server until \f[C]Ctrl\-C\f[] is
|
24
|
+
typed.
|
25
|
+
When not daemonized, the log will be output to standard out.
|
@@ -0,0 +1,25 @@
|
|
1
|
+
gemstash-start(1) gemstash-start(1)
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
NAME
|
6
|
+
gemstash-start - Starts the Gemstash server
|
7
|
+
|
8
|
+
SYNOPSIS
|
9
|
+
gemstash start [--no-daemonize] [--config-file FILE]
|
10
|
+
|
11
|
+
DESCRIPTION
|
12
|
+
Starts the Gemstash server.
|
13
|
+
|
14
|
+
OPTIONS
|
15
|
+
o --config-file FILE: Specify the config file to use. If you aren't
|
16
|
+
using the default config file at ~/.gemstash/config.yml, then you
|
17
|
+
must specify the config file via this option.
|
18
|
+
|
19
|
+
o --no-daemonize: The Gemstash server daemonizes itself by default.
|
20
|
+
Provide this option to instead run the server until Ctrl-C is typed.
|
21
|
+
When not daemonized, the log will be output to standard out.
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
October 9, 2015 gemstash-start(1)
|
@@ -0,0 +1,19 @@
|
|
1
|
+
.\" Automatically generated by Pandoc 1.16.0.2
|
2
|
+
.\"
|
3
|
+
.TH "gemstash\-status" "1" "October 28, 2015" "" ""
|
4
|
+
.hy
|
5
|
+
.SH NAME
|
6
|
+
.PP
|
7
|
+
gemstash\-status \- Checks status of the Gemstash server
|
8
|
+
.SH SYNOPSIS
|
9
|
+
.PP
|
10
|
+
\f[C]gemstash\ status\ [\-\-config\-file\ FILE]\f[]
|
11
|
+
.SH DESCRIPTION
|
12
|
+
.PP
|
13
|
+
Checks status of the Gemstash server.
|
14
|
+
.SH OPTIONS
|
15
|
+
.IP \[bu] 2
|
16
|
+
\f[C]\-\-config\-file\ FILE\f[]: Specify the config file to use.
|
17
|
+
If you aren\[aq]t using the default config file at
|
18
|
+
\f[C]~/.gemstash/config.yml\f[], then you must specify the config file
|
19
|
+
via this option.
|
@@ -0,0 +1,21 @@
|
|
1
|
+
gemstash-status(1) gemstash-status(1)
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
NAME
|
6
|
+
gemstash-status - Checks status of the Gemstash server
|
7
|
+
|
8
|
+
SYNOPSIS
|
9
|
+
gemstash status [--config-file FILE]
|
10
|
+
|
11
|
+
DESCRIPTION
|
12
|
+
Checks status of the Gemstash server.
|
13
|
+
|
14
|
+
OPTIONS
|
15
|
+
o --config-file FILE: Specify the config file to use. If you aren't
|
16
|
+
using the default config file at ~/.gemstash/config.yml, then you
|
17
|
+
must specify the config file via this option.
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
October 28, 2015 gemstash-status(1)
|
@@ -0,0 +1,19 @@
|
|
1
|
+
.\" Automatically generated by Pandoc 1.16.0.2
|
2
|
+
.\"
|
3
|
+
.TH "gemstash\-stop" "1" "October 9, 2015" "" ""
|
4
|
+
.hy
|
5
|
+
.SH NAME
|
6
|
+
.PP
|
7
|
+
gemstash\-stop \- Stops the Gemstash server
|
8
|
+
.SH SYNOPSIS
|
9
|
+
.PP
|
10
|
+
\f[C]gemstash\ stop\ [\-\-config\-file\ FILE]\f[]
|
11
|
+
.SH DESCRIPTION
|
12
|
+
.PP
|
13
|
+
Stops the Gemstash server.
|
14
|
+
.SH OPTIONS
|
15
|
+
.IP \[bu] 2
|
16
|
+
\f[C]\-\-config\-file\ FILE\f[]: Specify the config file to use.
|
17
|
+
If you aren\[aq]t using the default config file at
|
18
|
+
\f[C]~/.gemstash/config.yml\f[], then you must specify the config file
|
19
|
+
via this option.
|
@@ -0,0 +1,21 @@
|
|
1
|
+
gemstash-stop(1) gemstash-stop(1)
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
NAME
|
6
|
+
gemstash-stop - Stops the Gemstash server
|
7
|
+
|
8
|
+
SYNOPSIS
|
9
|
+
gemstash stop [--config-file FILE]
|
10
|
+
|
11
|
+
DESCRIPTION
|
12
|
+
Stops the Gemstash server.
|
13
|
+
|
14
|
+
OPTIONS
|
15
|
+
o --config-file FILE: Specify the config file to use. If you aren't
|
16
|
+
using the default config file at ~/.gemstash/config.yml, then you
|
17
|
+
must specify the config file via this option.
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
October 9, 2015 gemstash-stop(1)
|
@@ -0,0 +1,22 @@
|
|
1
|
+
.\" Automatically generated by Pandoc 1.16.0.2
|
2
|
+
.\"
|
3
|
+
.TH "gemstash\-version" "1" "December 14, 2015" "" ""
|
4
|
+
.hy
|
5
|
+
.SH NAME
|
6
|
+
.PP
|
7
|
+
gemstash\-version \- Show what version of Gemstash you are using
|
8
|
+
.SH SYNOPSIS
|
9
|
+
.PP
|
10
|
+
\f[C]gemstash\ version\f[]
|
11
|
+
.SH DESCRIPTION
|
12
|
+
.PP
|
13
|
+
Show what version of Gemstash you are using.
|
14
|
+
.SS USAGE
|
15
|
+
.IP
|
16
|
+
.nf
|
17
|
+
\f[C]
|
18
|
+
gemstash\ version
|
19
|
+
gemstash\ \-\-version
|
20
|
+
gemstash\ \-v
|
21
|
+
\f[]
|
22
|
+
.fi
|
@@ -0,0 +1,21 @@
|
|
1
|
+
gemstash-version(1) gemstash-version(1)
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
NAME
|
6
|
+
gemstash-version - Show what version of Gemstash you are using
|
7
|
+
|
8
|
+
SYNOPSIS
|
9
|
+
gemstash version
|
10
|
+
|
11
|
+
DESCRIPTION
|
12
|
+
Show what version of Gemstash you are using.
|
13
|
+
|
14
|
+
USAGE
|
15
|
+
gemstash version
|
16
|
+
gemstash --version
|
17
|
+
gemstash -v
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
December 14, 2015 gemstash-version(1)
|
data/lib/gemstash/storage.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require "gemstash"
|
2
2
|
require "digest"
|
3
|
-
require "pathname"
|
4
3
|
require "fileutils"
|
4
|
+
require "pathname"
|
5
5
|
require "yaml"
|
6
6
|
|
7
7
|
module Gemstash
|
@@ -60,8 +60,10 @@ module Gemstash
|
|
60
60
|
file = gemstash_env.base_file("metadata.yml")
|
61
61
|
|
62
62
|
unless File.exist?(file)
|
63
|
-
|
64
|
-
|
63
|
+
gemstash_env.atomic_write(file) do |f|
|
64
|
+
f.write({ storage_version: Gemstash::Storage::VERSION,
|
65
|
+
gemstash_version: Gemstash::VERSION }.to_yaml)
|
66
|
+
end
|
65
67
|
end
|
66
68
|
|
67
69
|
YAML.load_file(file)
|
@@ -85,6 +87,7 @@ module Gemstash
|
|
85
87
|
# A resource within the storage engine. The resource may have 1 or more files
|
86
88
|
# associated with it along with a metadata Hash that is stored in a YAML file.
|
87
89
|
class Resource
|
90
|
+
include Gemstash::Env::Helper
|
88
91
|
include Gemstash::Logging
|
89
92
|
attr_reader :name, :folder
|
90
93
|
VERSION = 1
|
@@ -316,7 +319,7 @@ module Gemstash
|
|
316
319
|
|
317
320
|
def save_file(filename)
|
318
321
|
content = yield
|
319
|
-
|
322
|
+
gemstash_env.atomic_write(filename) {|f| f.write(content) }
|
320
323
|
end
|
321
324
|
|
322
325
|
def read_file(filename)
|
data/lib/gemstash/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gemstash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andre Arko
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-10-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.2'
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: dalli
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -25,103 +39,103 @@ dependencies:
|
|
25
39
|
- !ruby/object:Gem::Version
|
26
40
|
version: '2.7'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
42
|
+
name: faraday
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
30
44
|
requirements:
|
31
45
|
- - "~>"
|
32
46
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
47
|
+
version: '0.9'
|
34
48
|
type: :runtime
|
35
49
|
prerelease: false
|
36
50
|
version_requirements: !ruby/object:Gem::Requirement
|
37
51
|
requirements:
|
38
52
|
- - "~>"
|
39
53
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
54
|
+
version: '0.9'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
56
|
+
name: faraday_middleware
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
44
58
|
requirements:
|
45
59
|
- - "~>"
|
46
60
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
61
|
+
version: '0.10'
|
48
62
|
type: :runtime
|
49
63
|
prerelease: false
|
50
64
|
version_requirements: !ruby/object:Gem::Requirement
|
51
65
|
requirements:
|
52
66
|
- - "~>"
|
53
67
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
68
|
+
version: '0.10'
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
70
|
+
name: lru_redux
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
58
72
|
requirements:
|
59
73
|
- - "~>"
|
60
74
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
75
|
+
version: '1.1'
|
62
76
|
type: :runtime
|
63
77
|
prerelease: false
|
64
78
|
version_requirements: !ruby/object:Gem::Requirement
|
65
79
|
requirements:
|
66
80
|
- - "~>"
|
67
81
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
82
|
+
version: '1.1'
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
84
|
+
name: puma
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
72
86
|
requirements:
|
73
87
|
- - "~>"
|
74
88
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
89
|
+
version: '2.14'
|
76
90
|
type: :runtime
|
77
91
|
prerelease: false
|
78
92
|
version_requirements: !ruby/object:Gem::Requirement
|
79
93
|
requirements:
|
80
94
|
- - "~>"
|
81
95
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
96
|
+
version: '2.14'
|
83
97
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
98
|
+
name: sequel
|
85
99
|
requirement: !ruby/object:Gem::Requirement
|
86
100
|
requirements:
|
87
101
|
- - "~>"
|
88
102
|
- !ruby/object:Gem::Version
|
89
|
-
version: '
|
103
|
+
version: '4.26'
|
90
104
|
type: :runtime
|
91
105
|
prerelease: false
|
92
106
|
version_requirements: !ruby/object:Gem::Requirement
|
93
107
|
requirements:
|
94
108
|
- - "~>"
|
95
109
|
- !ruby/object:Gem::Version
|
96
|
-
version: '
|
110
|
+
version: '4.26'
|
97
111
|
- !ruby/object:Gem::Dependency
|
98
|
-
name:
|
112
|
+
name: sinatra
|
99
113
|
requirement: !ruby/object:Gem::Requirement
|
100
114
|
requirements:
|
101
115
|
- - "~>"
|
102
116
|
- !ruby/object:Gem::Version
|
103
|
-
version: '
|
117
|
+
version: '1.4'
|
104
118
|
type: :runtime
|
105
119
|
prerelease: false
|
106
120
|
version_requirements: !ruby/object:Gem::Requirement
|
107
121
|
requirements:
|
108
122
|
- - "~>"
|
109
123
|
- !ruby/object:Gem::Version
|
110
|
-
version: '
|
124
|
+
version: '1.4'
|
111
125
|
- !ruby/object:Gem::Dependency
|
112
|
-
name:
|
126
|
+
name: thor
|
113
127
|
requirement: !ruby/object:Gem::Requirement
|
114
128
|
requirements:
|
115
129
|
- - "~>"
|
116
130
|
- !ruby/object:Gem::Version
|
117
|
-
version: '0.
|
131
|
+
version: '0.19'
|
118
132
|
type: :runtime
|
119
133
|
prerelease: false
|
120
134
|
version_requirements: !ruby/object:Gem::Requirement
|
121
135
|
requirements:
|
122
136
|
- - "~>"
|
123
137
|
- !ruby/object:Gem::Version
|
124
|
-
version: '0.
|
138
|
+
version: '0.19'
|
125
139
|
- !ruby/object:Gem::Dependency
|
126
140
|
name: sqlite3
|
127
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -178,6 +192,20 @@ dependencies:
|
|
178
192
|
- - "~>"
|
179
193
|
- !ruby/object:Gem::Version
|
180
194
|
version: '4.2'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: pandoc_object_filters
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - "~>"
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0.1'
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - "~>"
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0.1'
|
181
209
|
- !ruby/object:Gem::Dependency
|
182
210
|
name: rack-test
|
183
211
|
requirement: !ruby/object:Gem::Requirement
|
@@ -244,31 +272,10 @@ executables:
|
|
244
272
|
extensions: []
|
245
273
|
extra_rdoc_files: []
|
246
274
|
files:
|
247
|
-
- ".gitignore"
|
248
|
-
- ".rspec"
|
249
|
-
- ".rubocop-bundler.yml"
|
250
|
-
- ".rubocop-relax.yml"
|
251
|
-
- ".rubocop.yml"
|
252
|
-
- ".travis.yml"
|
253
275
|
- CHANGELOG.md
|
254
276
|
- CODE_OF_CONDUCT.md
|
255
|
-
- Gemfile
|
256
277
|
- LICENSE.txt
|
257
|
-
- README.md
|
258
|
-
- Rakefile
|
259
|
-
- bin/console
|
260
|
-
- bin/gemstash
|
261
|
-
- bin/setup
|
262
|
-
- docs/config.md
|
263
|
-
- docs/debug.md
|
264
|
-
- docs/deploy.md
|
265
|
-
- docs/mirror.md
|
266
|
-
- docs/multiple_sources.md
|
267
|
-
- docs/private_gems.md
|
268
|
-
- docs/reference.md
|
269
278
|
- exe/gemstash
|
270
|
-
- gemstash.gemspec
|
271
|
-
- gemstash.png
|
272
279
|
- lib/gemstash.rb
|
273
280
|
- lib/gemstash/authorization.rb
|
274
281
|
- lib/gemstash/cache.rb
|
@@ -301,6 +308,34 @@ files:
|
|
301
308
|
- lib/gemstash/gem_yanker.rb
|
302
309
|
- lib/gemstash/http_client.rb
|
303
310
|
- lib/gemstash/logging.rb
|
311
|
+
- lib/gemstash/man/gemstash-authorize.1
|
312
|
+
- lib/gemstash/man/gemstash-authorize.1.txt
|
313
|
+
- lib/gemstash/man/gemstash-configuration.5
|
314
|
+
- lib/gemstash/man/gemstash-configuration.5.txt
|
315
|
+
- lib/gemstash/man/gemstash-customize.7
|
316
|
+
- lib/gemstash/man/gemstash-customize.7.txt
|
317
|
+
- lib/gemstash/man/gemstash-debugging.7
|
318
|
+
- lib/gemstash/man/gemstash-debugging.7.txt
|
319
|
+
- lib/gemstash/man/gemstash-deploy.7
|
320
|
+
- lib/gemstash/man/gemstash-deploy.7.txt
|
321
|
+
- lib/gemstash/man/gemstash-mirror.7
|
322
|
+
- lib/gemstash/man/gemstash-mirror.7.txt
|
323
|
+
- lib/gemstash/man/gemstash-multiple-sources.7
|
324
|
+
- lib/gemstash/man/gemstash-multiple-sources.7.txt
|
325
|
+
- lib/gemstash/man/gemstash-private-gems.7
|
326
|
+
- lib/gemstash/man/gemstash-private-gems.7.txt
|
327
|
+
- lib/gemstash/man/gemstash-readme.7
|
328
|
+
- lib/gemstash/man/gemstash-readme.7.txt
|
329
|
+
- lib/gemstash/man/gemstash-setup.1
|
330
|
+
- lib/gemstash/man/gemstash-setup.1.txt
|
331
|
+
- lib/gemstash/man/gemstash-start.1
|
332
|
+
- lib/gemstash/man/gemstash-start.1.txt
|
333
|
+
- lib/gemstash/man/gemstash-status.1
|
334
|
+
- lib/gemstash/man/gemstash-status.1.txt
|
335
|
+
- lib/gemstash/man/gemstash-stop.1
|
336
|
+
- lib/gemstash/man/gemstash-stop.1.txt
|
337
|
+
- lib/gemstash/man/gemstash-version.1
|
338
|
+
- lib/gemstash/man/gemstash-version.1.txt
|
304
339
|
- lib/gemstash/migrations/01_gem_dependencies.rb
|
305
340
|
- lib/gemstash/migrations/02_authorizations.rb
|
306
341
|
- lib/gemstash/migrations/03_cached_gems.rb
|
@@ -311,9 +346,6 @@ files:
|
|
311
346
|
- lib/gemstash/upstream.rb
|
312
347
|
- lib/gemstash/version.rb
|
313
348
|
- lib/gemstash/web.rb
|
314
|
-
- rake/changelog.citrus
|
315
|
-
- rake/changelog.rb
|
316
|
-
- rake/table_of_contents.rb
|
317
349
|
homepage: https://github.com/bundler/gemstash
|
318
350
|
licenses:
|
319
351
|
- MIT
|
@@ -339,4 +371,3 @@ signing_key:
|
|
339
371
|
specification_version: 4
|
340
372
|
summary: A place to stash gems you'll need
|
341
373
|
test_files: []
|
342
|
-
has_rdoc:
|