dockerize_rails 1.1.0.beta.3 → 1.2.0.beta.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.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -1
- data/{.travis.yml → .travis.example.yml} +0 -0
- data/README.md +51 -0
- data/docs/DockerizeRails/CommandLine.html +179 -0
- data/docs/DockerizeRails.html +127 -0
- data/docs/DockerizeRailsCLI.html +137 -0
- data/docs/_index.html +127 -0
- data/docs/class_list.html +51 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +492 -0
- data/docs/file.README.html +185 -0
- data/docs/file_list.html +56 -0
- data/docs/frames.html +17 -0
- data/docs/index.html +185 -0
- data/docs/js/app.js +248 -0
- data/docs/js/full_list.js +216 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +59 -0
- data/docs/top-level-namespace.html +112 -0
- data/lib/dockerize_rails/command_line_methods.rb +27 -14
- data/lib/dockerize_rails/config_generator.rb +3 -3
- data/lib/dockerize_rails/constants.rb +22 -7
- data/lib/dockerize_rails/docker_commands/docker_build.rb +21 -6
- data/lib/dockerize_rails/docker_commands/docker_delete.rb +37 -0
- data/lib/dockerize_rails/docker_commands/docker_helpers.rb +81 -0
- data/lib/dockerize_rails/docker_commands/docker_options.rb +58 -0
- data/lib/dockerize_rails/docker_commands/docker_start.rb +106 -0
- data/lib/dockerize_rails/docker_commands/docker_stop.rb +43 -0
- data/lib/dockerize_rails/docker_commands.rb +39 -2
- data/lib/dockerize_rails/dr_config.rb +1 -1
- data/lib/dockerize_rails/helpers.rb +2 -1
- data/lib/dockerize_rails/version.rb +1 -1
- data/lib/dockerize_rails.rb +11 -0
- data/resources/.dockerignore.erb +1 -1
- metadata +25 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 965ed06f109fef968ecad7c724cca043c2eba55e
|
4
|
+
data.tar.gz: d7157bd2dd441abca027d1b7fbdf5a41261a1276
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00c51a263a90af7a5e15f9781da496494afcd42fc6be10b93ca6a581a2d78fd0942098d70c211581f359b3b71c451291340f8aee67cf9f090bb2b1ed8516b1cc
|
7
|
+
data.tar.gz: 5e725a977738d117e22ce175bab679adbd2b0a75f5f51489a8a6d2277893ea7deb32e42c610029f014cd3e218a5a1e5636d450d2bb07502fd2693e22688e23fc
|
data/.rubocop.yml
CHANGED
@@ -5,7 +5,7 @@ AllCops:
|
|
5
5
|
- 'vendor/**/*'
|
6
6
|
|
7
7
|
Lint/SafeNavigationChain:
|
8
|
-
Enabled:
|
8
|
+
Enabled: true
|
9
9
|
|
10
10
|
Metrics/LineLength:
|
11
11
|
Max: 120
|
@@ -22,6 +22,9 @@ Metrics/MethodLength:
|
|
22
22
|
Metrics/AbcSize:
|
23
23
|
Max: 20
|
24
24
|
|
25
|
+
Metrics/PerceivedComplexity:
|
26
|
+
Max: 10
|
27
|
+
|
25
28
|
Style/CyclomaticComplexity:
|
26
29
|
Max: 10
|
27
30
|
|
File without changes
|
data/README.md
CHANGED
@@ -22,6 +22,27 @@ $ bundle
|
|
22
22
|
|
23
23
|
## Usage
|
24
24
|
|
25
|
+
First create the configuration file `.dockerize.yml` for the gem itself.
|
26
|
+
Run: `bundle exec dock configure` to generate the template.
|
27
|
+
Use `--tiny` option to skip the description of configuration fields: `bundle exec dock configure --tiny`.
|
28
|
+
|
29
|
+
To create the docker config files (Dockerfile, provisions, docker-compose.yml etc.) run: `bundle exec dock dockerize`.
|
30
|
+
To create docker environment for running tests use `--test-env` option: `bundle exec dock dockerize --test-env`.
|
31
|
+
|
32
|
+
Use `docker-compose` to run application in docker: `docker-compose build && docker-compose up -d`.
|
33
|
+
|
34
|
+
If you see **migration error** in browser run the following commands:
|
35
|
+
|
36
|
+
```bash
|
37
|
+
$ docker-compose down # stop and destroy all running containers
|
38
|
+
$ docker-compose up -d mysql # if application uses postgresql database use 'postgresql' instead of 'mysql'
|
39
|
+
$ sleep 30 # wait 30 seconds to let the database container start properly
|
40
|
+
$ docker-compose up -d rails # now start the rails container
|
41
|
+
```
|
42
|
+
|
43
|
+
To remove docker configurations: `bundle exec dock undockerize`. Use `--purge` option to remove `.dockerize.yml` file: `bundle exec dock undockerize --purge`
|
44
|
+
|
45
|
+
All available commands:
|
25
46
|
```bash
|
26
47
|
$ bundle exec dock help
|
27
48
|
$ bundle exec dock configure
|
@@ -33,6 +54,36 @@ $ bundle exec dock undockerize --purge
|
|
33
54
|
$ bundle exec dock docker_info
|
34
55
|
$ bundle exec dock docker_pull
|
35
56
|
$ bundle exec dock docker_build
|
57
|
+
$ bundle exec dock docker_start
|
58
|
+
$ bundle exec dock docker_stop
|
59
|
+
$ bundle exec dock docker_stop --delete
|
60
|
+
```
|
61
|
+
|
62
|
+
Help message:
|
63
|
+
```
|
64
|
+
Usage: dock <command>
|
65
|
+
or: bundle exec dock <command>
|
66
|
+
|
67
|
+
commands:
|
68
|
+
|
69
|
+
configure, c, rc, cr - Generates '.dockerize.yml'
|
70
|
+
[--tiny] -- generates shorter config file, skipping all descriptions
|
71
|
+
|
72
|
+
dockerize, dc, d - Generates docker config files
|
73
|
+
[--test-env] -- generates configurations to run tests.
|
74
|
+
|
75
|
+
undockerize, ud, du, u, dd - Removes docker configurations
|
76
|
+
[--purge] -- also removes .dockerize.yml
|
77
|
+
|
78
|
+
docker_info, info - Shows Docker information
|
79
|
+
docker_pull, pull - Pulls base Docker images (ruby, mysql/postgres)
|
80
|
+
docker_build, build - Builds Docker images
|
81
|
+
docker_start, start - Run/Starts Docker containers
|
82
|
+
docker_stop, stop - Stops Docker containers
|
83
|
+
[--delete] -- also deletes the containers
|
84
|
+
|
85
|
+
docker_delete, delete - Deletes Docker containers
|
86
|
+
help, h - Prints this message
|
36
87
|
```
|
37
88
|
|
38
89
|
## Demo
|
@@ -0,0 +1,179 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
+
<title>
|
7
|
+
Module: DockerizeRails::CommandLine
|
8
|
+
|
9
|
+
— Documentation by YARD 0.9.9
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
|
16
|
+
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
18
|
+
pathId = "DockerizeRails::CommandLine";
|
19
|
+
relpath = '../';
|
20
|
+
</script>
|
21
|
+
|
22
|
+
|
23
|
+
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
|
24
|
+
|
25
|
+
<script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
|
26
|
+
|
27
|
+
|
28
|
+
</head>
|
29
|
+
<body>
|
30
|
+
<div class="nav_wrap">
|
31
|
+
<iframe id="nav" src="../class_list.html?1"></iframe>
|
32
|
+
<div id="resizer"></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="main" tabindex="-1">
|
36
|
+
<div id="header">
|
37
|
+
<div id="menu">
|
38
|
+
|
39
|
+
<a href="../_index.html">Index (C)</a> »
|
40
|
+
<span class='title'><span class='object_link'><a href="../DockerizeRails.html" title="DockerizeRails (module)">DockerizeRails</a></span></span>
|
41
|
+
»
|
42
|
+
<span class="title">CommandLine</span>
|
43
|
+
|
44
|
+
</div>
|
45
|
+
|
46
|
+
<div id="search">
|
47
|
+
|
48
|
+
<a class="full_list_link" id="class_list_link"
|
49
|
+
href="../class_list.html">
|
50
|
+
|
51
|
+
<svg width="24" height="24">
|
52
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
53
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
54
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
55
|
+
</svg>
|
56
|
+
</a>
|
57
|
+
|
58
|
+
</div>
|
59
|
+
<div class="clear"></div>
|
60
|
+
</div>
|
61
|
+
|
62
|
+
<div id="content"><h1>Module: DockerizeRails::CommandLine
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
</h1>
|
67
|
+
<div class="box_info">
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
<dl>
|
78
|
+
<dt>Included in:</dt>
|
79
|
+
<dd><span class='object_link'><a href="../DockerizeRailsCLI.html" title="DockerizeRailsCLI (class)">DockerizeRailsCLI</a></span></dd>
|
80
|
+
</dl>
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
<dl>
|
85
|
+
<dt>Defined in:</dt>
|
86
|
+
<dd>lib/dockerize_rails/command_line.rb</dd>
|
87
|
+
</dl>
|
88
|
+
|
89
|
+
</div>
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
<h2>
|
100
|
+
Instance Method Summary
|
101
|
+
<small><a href="#" class="summary_toggle">collapse</a></small>
|
102
|
+
</h2>
|
103
|
+
|
104
|
+
<ul class="summary">
|
105
|
+
|
106
|
+
<li class="public ">
|
107
|
+
<span class="summary_signature">
|
108
|
+
|
109
|
+
<a href="#run-instance_method" title="#run (instance method)">#<strong>run</strong> ⇒ Object </a>
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
</span>
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
124
|
+
|
125
|
+
</li>
|
126
|
+
|
127
|
+
|
128
|
+
</ul>
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
<div id="instance_method_details" class="method_details_list">
|
134
|
+
<h2>Instance Method Details</h2>
|
135
|
+
|
136
|
+
|
137
|
+
<div class="method_details first">
|
138
|
+
<h3 class="signature first" id="run-instance_method">
|
139
|
+
|
140
|
+
#<strong>run</strong> ⇒ <tt>Object</tt>
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
</h3><table class="source_code">
|
147
|
+
<tr>
|
148
|
+
<td>
|
149
|
+
<pre class="lines">
|
150
|
+
|
151
|
+
|
152
|
+
3
|
153
|
+
4
|
154
|
+
5</pre>
|
155
|
+
</td>
|
156
|
+
<td>
|
157
|
+
<pre class="code"><span class="info file"># File 'lib/dockerize_rails/command_line.rb', line 3</span>
|
158
|
+
|
159
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_run'>run</span>
|
160
|
+
<span class='id identifier rubyid_exit'>exit</span><span class='lparen'>(</span><span class='const'>CommandLineMethods</span><span class='period'>.</span><span class='id identifier rubyid_invoke'>invoke</span><span class='lparen'>(</span><span class='const'>Helpers</span><span class='period'>.</span><span class='id identifier rubyid_parse_opts'>parse_opts</span><span class='rparen'>)</span><span class='rparen'>)</span>
|
161
|
+
<span class='kw'>end</span></pre>
|
162
|
+
</td>
|
163
|
+
</tr>
|
164
|
+
</table>
|
165
|
+
</div>
|
166
|
+
|
167
|
+
</div>
|
168
|
+
|
169
|
+
</div>
|
170
|
+
|
171
|
+
<div id="footer">
|
172
|
+
Generated on Sat Aug 12 10:20:48 2017 by
|
173
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
174
|
+
0.9.9 (ruby-2.1.0).
|
175
|
+
</div>
|
176
|
+
|
177
|
+
</div>
|
178
|
+
</body>
|
179
|
+
</html>
|
@@ -0,0 +1,127 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
+
<title>
|
7
|
+
Module: DockerizeRails
|
8
|
+
|
9
|
+
— Documentation by YARD 0.9.9
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
16
|
+
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
18
|
+
pathId = "DockerizeRails";
|
19
|
+
relpath = '';
|
20
|
+
</script>
|
21
|
+
|
22
|
+
|
23
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
24
|
+
|
25
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
26
|
+
|
27
|
+
|
28
|
+
</head>
|
29
|
+
<body>
|
30
|
+
<div class="nav_wrap">
|
31
|
+
<iframe id="nav" src="class_list.html?1"></iframe>
|
32
|
+
<div id="resizer"></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="main" tabindex="-1">
|
36
|
+
<div id="header">
|
37
|
+
<div id="menu">
|
38
|
+
|
39
|
+
<a href="_index.html">Index (D)</a> »
|
40
|
+
|
41
|
+
|
42
|
+
<span class="title">DockerizeRails</span>
|
43
|
+
|
44
|
+
</div>
|
45
|
+
|
46
|
+
<div id="search">
|
47
|
+
|
48
|
+
<a class="full_list_link" id="class_list_link"
|
49
|
+
href="class_list.html">
|
50
|
+
|
51
|
+
<svg width="24" height="24">
|
52
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
53
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
54
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
55
|
+
</svg>
|
56
|
+
</a>
|
57
|
+
|
58
|
+
</div>
|
59
|
+
<div class="clear"></div>
|
60
|
+
</div>
|
61
|
+
|
62
|
+
<div id="content"><h1>Module: DockerizeRails
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
</h1>
|
67
|
+
<div class="box_info">
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
<dl>
|
80
|
+
<dt>Defined in:</dt>
|
81
|
+
<dd>lib/dockerize_rails.rb<span class="defines">,<br />
|
82
|
+
lib/dockerize_rails/paths.rb,<br /> lib/dockerize_rails/helpers.rb,<br /> lib/dockerize_rails/version.rb,<br /> lib/dockerize_rails/constants.rb,<br /> lib/dockerize_rails/dr_config.rb,<br /> lib/dockerize_rails/templates.rb,<br /> lib/dockerize_rails/command_line.rb,<br /> lib/dockerize_rails/config_loader.rb,<br /> lib/dockerize_rails/dr_name_space.rb,<br /> lib/dockerize_rails/docker_commands.rb,<br /> lib/dockerize_rails/config_generator.rb,<br /> lib/dockerize_rails/command_line_methods.rb,<br /> lib/dockerize_rails/docker_commands/docker_pull.rb,<br /> lib/dockerize_rails/docker_commands/docker_stop.rb,<br /> lib/dockerize_rails/docker_commands/docker_build.rb,<br /> lib/dockerize_rails/docker_commands/docker_delete.rb,<br /> lib/dockerize_rails/docker_commands/docker_helpers.rb,<br /> lib/dockerize_rails/docker_commands/docker_options.rb</span>
|
83
|
+
</dd>
|
84
|
+
</dl>
|
85
|
+
|
86
|
+
</div>
|
87
|
+
|
88
|
+
<h2>Defined Under Namespace</h2>
|
89
|
+
<p class="children">
|
90
|
+
|
91
|
+
|
92
|
+
<strong class="modules">Modules:</strong> <span class='object_link'><a href="DockerizeRails/CommandLine.html" title="DockerizeRails::CommandLine (module)">CommandLine</a></span>
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
</p>
|
98
|
+
|
99
|
+
<h2>Constant Summary</h2>
|
100
|
+
<dl class="constants">
|
101
|
+
|
102
|
+
<dt id="VERSION-constant" class="">VERSION =
|
103
|
+
|
104
|
+
</dt>
|
105
|
+
<dd><pre class="code"><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>1.2.0.beta.1</span><span class='tstring_end'>'</span></span><span class='period'>.</span><span class='id identifier rubyid_freeze'>freeze</span></pre></dd>
|
106
|
+
|
107
|
+
</dl>
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
</div>
|
118
|
+
|
119
|
+
<div id="footer">
|
120
|
+
Generated on Sat Aug 12 10:20:48 2017 by
|
121
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
122
|
+
0.9.9 (ruby-2.1.0).
|
123
|
+
</div>
|
124
|
+
|
125
|
+
</div>
|
126
|
+
</body>
|
127
|
+
</html>
|
@@ -0,0 +1,137 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
+
<title>
|
7
|
+
Class: DockerizeRailsCLI
|
8
|
+
|
9
|
+
— Documentation by YARD 0.9.9
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
16
|
+
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
18
|
+
pathId = "DockerizeRailsCLI";
|
19
|
+
relpath = '';
|
20
|
+
</script>
|
21
|
+
|
22
|
+
|
23
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
24
|
+
|
25
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
26
|
+
|
27
|
+
|
28
|
+
</head>
|
29
|
+
<body>
|
30
|
+
<div class="nav_wrap">
|
31
|
+
<iframe id="nav" src="class_list.html?1"></iframe>
|
32
|
+
<div id="resizer"></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="main" tabindex="-1">
|
36
|
+
<div id="header">
|
37
|
+
<div id="menu">
|
38
|
+
|
39
|
+
<a href="_index.html">Index (D)</a> »
|
40
|
+
|
41
|
+
|
42
|
+
<span class="title">DockerizeRailsCLI</span>
|
43
|
+
|
44
|
+
</div>
|
45
|
+
|
46
|
+
<div id="search">
|
47
|
+
|
48
|
+
<a class="full_list_link" id="class_list_link"
|
49
|
+
href="class_list.html">
|
50
|
+
|
51
|
+
<svg width="24" height="24">
|
52
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
53
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
54
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
55
|
+
</svg>
|
56
|
+
</a>
|
57
|
+
|
58
|
+
</div>
|
59
|
+
<div class="clear"></div>
|
60
|
+
</div>
|
61
|
+
|
62
|
+
<div id="content"><h1>Class: DockerizeRailsCLI
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
</h1>
|
67
|
+
<div class="box_info">
|
68
|
+
|
69
|
+
<dl>
|
70
|
+
<dt>Inherits:</dt>
|
71
|
+
<dd>
|
72
|
+
<span class="inheritName">Object</span>
|
73
|
+
|
74
|
+
<ul class="fullTree">
|
75
|
+
<li>Object</li>
|
76
|
+
|
77
|
+
<li class="next">DockerizeRailsCLI</li>
|
78
|
+
|
79
|
+
</ul>
|
80
|
+
<a href="#" class="inheritanceTree">show all</a>
|
81
|
+
|
82
|
+
</dd>
|
83
|
+
</dl>
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
<dl>
|
89
|
+
<dt>Extended by:</dt>
|
90
|
+
<dd><span class='object_link'><a href="DockerizeRails/CommandLine.html" title="DockerizeRails::CommandLine (module)">DockerizeRails::CommandLine</a></span></dd>
|
91
|
+
</dl>
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
<dl>
|
101
|
+
<dt>Defined in:</dt>
|
102
|
+
<dd>lib/dockerize_rails.rb</dd>
|
103
|
+
</dl>
|
104
|
+
|
105
|
+
</div>
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
<h2>Method Summary</h2>
|
122
|
+
|
123
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="DockerizeRails/CommandLine.html" title="DockerizeRails::CommandLine (module)">DockerizeRails::CommandLine</a></span></h3>
|
124
|
+
<p class="inherited"><span class='object_link'><a href="DockerizeRails/CommandLine.html#run-instance_method" title="DockerizeRails::CommandLine#run (method)">run</a></span></p>
|
125
|
+
|
126
|
+
|
127
|
+
</div>
|
128
|
+
|
129
|
+
<div id="footer">
|
130
|
+
Generated on Sat Aug 12 10:20:48 2017 by
|
131
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
132
|
+
0.9.9 (ruby-2.1.0).
|
133
|
+
</div>
|
134
|
+
|
135
|
+
</div>
|
136
|
+
</body>
|
137
|
+
</html>
|
data/docs/_index.html
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
+
<title>
|
7
|
+
Documentation by YARD 0.9.9
|
8
|
+
|
9
|
+
</title>
|
10
|
+
|
11
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
14
|
+
|
15
|
+
<script type="text/javascript" charset="utf-8">
|
16
|
+
pathId = null;
|
17
|
+
relpath = '';
|
18
|
+
</script>
|
19
|
+
|
20
|
+
|
21
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
22
|
+
|
23
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
24
|
+
|
25
|
+
|
26
|
+
</head>
|
27
|
+
<body>
|
28
|
+
<div class="nav_wrap">
|
29
|
+
<iframe id="nav" src="class_list.html?1"></iframe>
|
30
|
+
<div id="resizer"></div>
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<div id="main" tabindex="-1">
|
34
|
+
<div id="header">
|
35
|
+
<div id="menu">
|
36
|
+
|
37
|
+
</div>
|
38
|
+
|
39
|
+
<div id="search">
|
40
|
+
|
41
|
+
<a class="full_list_link" id="class_list_link"
|
42
|
+
href="class_list.html">
|
43
|
+
|
44
|
+
<svg width="24" height="24">
|
45
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
46
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
47
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
48
|
+
</svg>
|
49
|
+
</a>
|
50
|
+
|
51
|
+
</div>
|
52
|
+
<div class="clear"></div>
|
53
|
+
</div>
|
54
|
+
|
55
|
+
<div id="content"><h1 class="noborder title">Documentation by YARD 0.9.9</h1>
|
56
|
+
<div id="listing">
|
57
|
+
<h1 class="alphaindex">Alphabetic Index</h1>
|
58
|
+
|
59
|
+
<h2>File Listing</h2>
|
60
|
+
<ul id="files" class="index_inline_list">
|
61
|
+
|
62
|
+
|
63
|
+
<li class="r1"><a href="index.html" title="README">README</a></li>
|
64
|
+
|
65
|
+
|
66
|
+
</ul>
|
67
|
+
|
68
|
+
<div class="clear"></div>
|
69
|
+
<h2>Namespace Listing A-Z</h2>
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
<table>
|
75
|
+
<tr>
|
76
|
+
<td valign='top' width="33%">
|
77
|
+
|
78
|
+
|
79
|
+
<ul id="alpha_C" class="alpha">
|
80
|
+
<li class="letter">C</li>
|
81
|
+
<ul>
|
82
|
+
|
83
|
+
<li>
|
84
|
+
<span class='object_link'><a href="DockerizeRails/CommandLine.html" title="DockerizeRails::CommandLine (module)">CommandLine</a></span>
|
85
|
+
|
86
|
+
<small>(DockerizeRails)</small>
|
87
|
+
|
88
|
+
</li>
|
89
|
+
|
90
|
+
</ul>
|
91
|
+
</ul>
|
92
|
+
|
93
|
+
|
94
|
+
<ul id="alpha_D" class="alpha">
|
95
|
+
<li class="letter">D</li>
|
96
|
+
<ul>
|
97
|
+
|
98
|
+
<li>
|
99
|
+
<span class='object_link'><a href="DockerizeRails.html" title="DockerizeRails (module)">DockerizeRails</a></span>
|
100
|
+
|
101
|
+
</li>
|
102
|
+
|
103
|
+
<li>
|
104
|
+
<span class='object_link'><a href="DockerizeRailsCLI.html" title="DockerizeRailsCLI (class)">DockerizeRailsCLI</a></span>
|
105
|
+
|
106
|
+
</li>
|
107
|
+
|
108
|
+
</ul>
|
109
|
+
</ul>
|
110
|
+
|
111
|
+
</td>
|
112
|
+
</tr>
|
113
|
+
</table>
|
114
|
+
|
115
|
+
</div>
|
116
|
+
|
117
|
+
</div>
|
118
|
+
|
119
|
+
<div id="footer">
|
120
|
+
Generated on Sat Aug 12 10:20:48 2017 by
|
121
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
122
|
+
0.9.9 (ruby-2.1.0).
|
123
|
+
</div>
|
124
|
+
|
125
|
+
</div>
|
126
|
+
</body>
|
127
|
+
</html>
|