pcelka 1.0.0
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 +7 -0
- data/app.rb +95 -0
- data/assets/css/styles.css +209 -0
- data/assets/js/app.js +16 -0
- data/assets/js/hotkey.js +27 -0
- data/bin/dev +9 -0
- data/bin/dev-puma +8 -0
- data/bin/pcelka +16 -0
- data/bin/pcelka-console +16 -0
- data/config/datastar.rb +16 -0
- data/config/falcon_init.rb +14 -0
- data/config.ru +30 -0
- data/db/migrations/001_create_logs.rb +11 -0
- data/db.rb +3 -0
- data/examples/procfile/Procfile +7 -0
- data/examples/procfile/Procfile.without_colon +2 -0
- data/examples/procfile/error +7 -0
- data/examples/procfile/log/neverdie.log +4 -0
- data/examples/procfile/oneshot +3 -0
- data/examples/procfile/single_call +10 -0
- data/examples/procfile/spawnee +14 -0
- data/examples/procfile/spawner +7 -0
- data/examples/procfile/ticker +14 -0
- data/examples/procfile/utf8 +11 -0
- data/i18n/en.yml +32 -0
- data/i18n/ru.yml +32 -0
- data/lib/pcelka/async_client.rb +51 -0
- data/lib/pcelka/logs_collector.rb +37 -0
- data/lib/pcelka/program.rb +79 -0
- data/lib/pcelka/server/commandable.rb +57 -0
- data/lib/pcelka/server/controllable.rb +45 -0
- data/lib/pcelka/server/notifiable.rb +25 -0
- data/lib/pcelka/server/reportable.rb +61 -0
- data/lib/pcelka/server/writing.rb +28 -0
- data/lib/pcelka/server.rb +66 -0
- data/lib/pcelka/spec/procfile.rb +46 -0
- data/lib/pcelka/spec/program_spec.rb +3 -0
- data/lib/pcelka/spec.rb +11 -0
- data/lib/pcelka/writer/console_writer.rb +60 -0
- data/lib/pcelka/writer/generic_writer.rb +16 -0
- data/lib/pcelka/writer.rb +25 -0
- data/lib/pcelka.rb +5 -0
- data/models.rb +21 -0
- data/pcelka.rb +22 -0
- data/public/android-chrome-192x192.png +0 -0
- data/public/android-chrome-512x512.png +0 -0
- data/public/apple-touch-icon.png +0 -0
- data/public/favicon-16x16.png +0 -0
- data/public/favicon-32x32.png +0 -0
- data/public/favicon.ico +0 -0
- data/public/site.webmanifest +1 -0
- data/public/sound/bee.ogg +0 -0
- data/public/vendor/datastar.js +9 -0
- data/public/vendor/datastar.js.map +7 -0
- data/views/home/action.erb +10 -0
- data/views/home/report.erb +36 -0
- data/views/home.erb +18 -0
- data/views/layout.erb +20 -0
- data/views/logs/log_line.erb +13 -0
- data/views/logs.erb +16 -0
- data/views/nav/arrow.erb +21 -0
- metadata +282 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<%# locals: (report:) %>
|
|
2
|
+
<article id="report" data-init="@get('/')">
|
|
3
|
+
<div class="actions mb3">
|
|
4
|
+
<% report_allowed_actions = report.allowed_actions
|
|
5
|
+
report.possible_actions.each do |action| %>
|
|
6
|
+
<%== part "home/action", action: action, disabled: !report_allowed_actions.include?(action) %>
|
|
7
|
+
<% end %>
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
<table>
|
|
11
|
+
<thead>
|
|
12
|
+
<tr>
|
|
13
|
+
<th><%= t.report.col.app %></th>
|
|
14
|
+
<th class="status-column"><%= t.report.col.status %></th>
|
|
15
|
+
<th><%= t.report.col.actions %></th>
|
|
16
|
+
</tr>
|
|
17
|
+
</thead>
|
|
18
|
+
<% report.items.each do |item| %>
|
|
19
|
+
<tr>
|
|
20
|
+
<td><%= item.id %></td>
|
|
21
|
+
<td><%= t.program.status[item.status] %></td>
|
|
22
|
+
<td>
|
|
23
|
+
<div class="actions">
|
|
24
|
+
<% program_allowed_actions = item.allowed_actions
|
|
25
|
+
item.possible_actions.each do |action| %>
|
|
26
|
+
<%== part "home/action", action: action, program_id: item.id,
|
|
27
|
+
disabled: !program_allowed_actions.include?(action) %>
|
|
28
|
+
<% end %>
|
|
29
|
+
</div>
|
|
30
|
+
</td>
|
|
31
|
+
</tr>
|
|
32
|
+
<% end %>
|
|
33
|
+
<tbody>
|
|
34
|
+
</tbody>
|
|
35
|
+
</table>
|
|
36
|
+
</article>
|
data/views/home.erb
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<header id="top-header">
|
|
2
|
+
<h1 id="pcelka-h1" onclick="$('#bee-sound').play()">Pčёlka</h1>
|
|
3
|
+
<audio id="bee-sound" src="/sound/bee.ogg"></audio>
|
|
4
|
+
</header>
|
|
5
|
+
|
|
6
|
+
<%== part "home/report", report: @report %>
|
|
7
|
+
<div class="mb3"></div>
|
|
8
|
+
<%== part "logs" %>
|
|
9
|
+
|
|
10
|
+
<nav id="aside-nav">
|
|
11
|
+
<a id="nav-up" class="nav-arrow" title="<%= t.nav.up %>" href="#top-header">
|
|
12
|
+
<%== part "nav/arrow", direction: :up %>
|
|
13
|
+
</a>
|
|
14
|
+
|
|
15
|
+
<a id="nav-down" class="nav-arrow" title="<%= t.nav.down %>" href="#logs">
|
|
16
|
+
<%== part "nav/arrow", direction: :down %>
|
|
17
|
+
</a>
|
|
18
|
+
</nav>
|
data/views/layout.erb
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
7
|
+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
8
|
+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
9
|
+
<link rel="manifest" href="/site.webmanifest">
|
|
10
|
+
<script type="module" src="/vendor/datastar.js"></script>
|
|
11
|
+
<%== assets(:css) %>
|
|
12
|
+
<%== assets(:js, type: "module") %>
|
|
13
|
+
<title>Pcelka<% if @page_title %> - <%= @page_title %><% end %></title>
|
|
14
|
+
</head>
|
|
15
|
+
<body>
|
|
16
|
+
<main>
|
|
17
|
+
<%== yield %>
|
|
18
|
+
</main>
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<%# locals: (log:) %>
|
|
2
|
+
|
|
3
|
+
<%
|
|
4
|
+
app = log[:app].start_with?("_") ? t.logs.app.send(log[:app]) : log[:app]
|
|
5
|
+
message = log[:message].start_with?("_") ? t.logs.message.send(log[:message]) : log[:message]
|
|
6
|
+
date = log[:created_at].strftime("%H:%M:%S")
|
|
7
|
+
%>
|
|
8
|
+
|
|
9
|
+
<div class="log-line">
|
|
10
|
+
<span><%= date %></span>
|
|
11
|
+
<span class="log-app"><%= app %>:</span>
|
|
12
|
+
<span class="log-message"><%= message %></span>
|
|
13
|
+
</div>
|
data/views/logs.erb
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<section id="logs">
|
|
2
|
+
<div id="logs-controls">
|
|
3
|
+
<div>
|
|
4
|
+
<label>
|
|
5
|
+
<input type="checkbox" id="scroll-to-bottom-checkbox" data-bind:_scroll-to-bottom>
|
|
6
|
+
<%= t.logs.scroll_to_bottom %>
|
|
7
|
+
</label>
|
|
8
|
+
</div>
|
|
9
|
+
</div>
|
|
10
|
+
<div id="logs-area"
|
|
11
|
+
data-init="@get('/logs')"
|
|
12
|
+
data-on-signal-patch="$_scrollToBottom ? el.scrollTop = el.scrollHeight : null"
|
|
13
|
+
data-on-signal-patch-filter="{include: /^(log_last_id|_scrollToBottom)$/}"
|
|
14
|
+
>
|
|
15
|
+
</div>
|
|
16
|
+
</section>
|
data/views/nav/arrow.erb
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<%# locals: (direction:) %>
|
|
2
|
+
|
|
3
|
+
<svg viewBox="-20 0 40 70" xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<defs>
|
|
5
|
+
<polygon id="base" points="0,0 20,20 0,40 -20,20" />
|
|
6
|
+
<g id="point">
|
|
7
|
+
<clipPath id="clp">
|
|
8
|
+
<polygon points="0,10 15,30 0,25 -15,30" />
|
|
9
|
+
</clipPath>
|
|
10
|
+
<polygon points="0,0 20,20 0,30 -20,20" fill="var(--color-brown)" />
|
|
11
|
+
<polygon points="0,10 20,30 0,30 -20,30" fill="var(--color-orange)" clip-path="url(#clp)" />
|
|
12
|
+
</g>
|
|
13
|
+
</defs>
|
|
14
|
+
<g transform="rotate(<%= direction == :up ? 0 : 180 %>, 0, 35)">
|
|
15
|
+
<use href="#base" fill="var(--color-brown)" />
|
|
16
|
+
<use href="#base" y="10" fill="var(--color-orange)" />
|
|
17
|
+
<use href="#base" y="20" fill="var(--color-brown)" />
|
|
18
|
+
<use href="#base" y="30" fill="var(--color-orange)" />
|
|
19
|
+
<use href="#point" y="40" />
|
|
20
|
+
</g>
|
|
21
|
+
</svg>
|
metadata
ADDED
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: pcelka
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Dmitry Matveyev
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: tilt
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '2.6'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '2.6'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: erubi
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '1.5'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '1.5'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: roda
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '3.89'
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '3.89'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: sequel
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '0'
|
|
61
|
+
type: :runtime
|
|
62
|
+
prerelease: false
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - ">="
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '0'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: sqlite3
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '0'
|
|
75
|
+
type: :runtime
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
82
|
+
- !ruby/object:Gem::Dependency
|
|
83
|
+
name: refrigerator
|
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '1'
|
|
89
|
+
type: :runtime
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - ">="
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '1'
|
|
96
|
+
- !ruby/object:Gem::Dependency
|
|
97
|
+
name: rake
|
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '0'
|
|
103
|
+
type: :runtime
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - ">="
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '0'
|
|
110
|
+
- !ruby/object:Gem::Dependency
|
|
111
|
+
name: falcon
|
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - ">="
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: '0'
|
|
117
|
+
type: :runtime
|
|
118
|
+
prerelease: false
|
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - ">="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: '0'
|
|
124
|
+
- !ruby/object:Gem::Dependency
|
|
125
|
+
name: async
|
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
- - ">="
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: '0'
|
|
131
|
+
type: :runtime
|
|
132
|
+
prerelease: false
|
|
133
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
134
|
+
requirements:
|
|
135
|
+
- - ">="
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
version: '0'
|
|
138
|
+
- !ruby/object:Gem::Dependency
|
|
139
|
+
name: console
|
|
140
|
+
requirement: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - ">="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '0'
|
|
145
|
+
type: :runtime
|
|
146
|
+
prerelease: false
|
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - ">="
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: '0'
|
|
152
|
+
- !ruby/object:Gem::Dependency
|
|
153
|
+
name: ostruct
|
|
154
|
+
requirement: !ruby/object:Gem::Requirement
|
|
155
|
+
requirements:
|
|
156
|
+
- - ">="
|
|
157
|
+
- !ruby/object:Gem::Version
|
|
158
|
+
version: '0'
|
|
159
|
+
type: :runtime
|
|
160
|
+
prerelease: false
|
|
161
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
162
|
+
requirements:
|
|
163
|
+
- - ">="
|
|
164
|
+
- !ruby/object:Gem::Version
|
|
165
|
+
version: '0'
|
|
166
|
+
- !ruby/object:Gem::Dependency
|
|
167
|
+
name: roda-i18n
|
|
168
|
+
requirement: !ruby/object:Gem::Requirement
|
|
169
|
+
requirements:
|
|
170
|
+
- - ">="
|
|
171
|
+
- !ruby/object:Gem::Version
|
|
172
|
+
version: '0'
|
|
173
|
+
type: :runtime
|
|
174
|
+
prerelease: false
|
|
175
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
176
|
+
requirements:
|
|
177
|
+
- - ">="
|
|
178
|
+
- !ruby/object:Gem::Version
|
|
179
|
+
version: '0'
|
|
180
|
+
- !ruby/object:Gem::Dependency
|
|
181
|
+
name: datastar
|
|
182
|
+
requirement: !ruby/object:Gem::Requirement
|
|
183
|
+
requirements:
|
|
184
|
+
- - ">="
|
|
185
|
+
- !ruby/object:Gem::Version
|
|
186
|
+
version: '0'
|
|
187
|
+
type: :runtime
|
|
188
|
+
prerelease: false
|
|
189
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
190
|
+
requirements:
|
|
191
|
+
- - ">="
|
|
192
|
+
- !ruby/object:Gem::Version
|
|
193
|
+
version: '0'
|
|
194
|
+
description: Run several programs at once, control them and watch the logs
|
|
195
|
+
email: public@greenfork.me
|
|
196
|
+
executables:
|
|
197
|
+
- pcelka
|
|
198
|
+
extensions: []
|
|
199
|
+
extra_rdoc_files: []
|
|
200
|
+
files:
|
|
201
|
+
- app.rb
|
|
202
|
+
- assets/css/styles.css
|
|
203
|
+
- assets/js/app.js
|
|
204
|
+
- assets/js/hotkey.js
|
|
205
|
+
- bin/dev
|
|
206
|
+
- bin/dev-puma
|
|
207
|
+
- bin/pcelka
|
|
208
|
+
- bin/pcelka-console
|
|
209
|
+
- config.ru
|
|
210
|
+
- config/datastar.rb
|
|
211
|
+
- config/falcon_init.rb
|
|
212
|
+
- db.rb
|
|
213
|
+
- db/migrations/001_create_logs.rb
|
|
214
|
+
- examples/procfile/Procfile
|
|
215
|
+
- examples/procfile/Procfile.without_colon
|
|
216
|
+
- examples/procfile/error
|
|
217
|
+
- examples/procfile/log/neverdie.log
|
|
218
|
+
- examples/procfile/oneshot
|
|
219
|
+
- examples/procfile/single_call
|
|
220
|
+
- examples/procfile/spawnee
|
|
221
|
+
- examples/procfile/spawner
|
|
222
|
+
- examples/procfile/ticker
|
|
223
|
+
- examples/procfile/utf8
|
|
224
|
+
- i18n/en.yml
|
|
225
|
+
- i18n/ru.yml
|
|
226
|
+
- lib/pcelka.rb
|
|
227
|
+
- lib/pcelka/async_client.rb
|
|
228
|
+
- lib/pcelka/logs_collector.rb
|
|
229
|
+
- lib/pcelka/program.rb
|
|
230
|
+
- lib/pcelka/server.rb
|
|
231
|
+
- lib/pcelka/server/commandable.rb
|
|
232
|
+
- lib/pcelka/server/controllable.rb
|
|
233
|
+
- lib/pcelka/server/notifiable.rb
|
|
234
|
+
- lib/pcelka/server/reportable.rb
|
|
235
|
+
- lib/pcelka/server/writing.rb
|
|
236
|
+
- lib/pcelka/spec.rb
|
|
237
|
+
- lib/pcelka/spec/procfile.rb
|
|
238
|
+
- lib/pcelka/spec/program_spec.rb
|
|
239
|
+
- lib/pcelka/writer.rb
|
|
240
|
+
- lib/pcelka/writer/console_writer.rb
|
|
241
|
+
- lib/pcelka/writer/generic_writer.rb
|
|
242
|
+
- models.rb
|
|
243
|
+
- pcelka.rb
|
|
244
|
+
- public/android-chrome-192x192.png
|
|
245
|
+
- public/android-chrome-512x512.png
|
|
246
|
+
- public/apple-touch-icon.png
|
|
247
|
+
- public/favicon-16x16.png
|
|
248
|
+
- public/favicon-32x32.png
|
|
249
|
+
- public/favicon.ico
|
|
250
|
+
- public/site.webmanifest
|
|
251
|
+
- public/sound/bee.ogg
|
|
252
|
+
- public/vendor/datastar.js
|
|
253
|
+
- public/vendor/datastar.js.map
|
|
254
|
+
- views/home.erb
|
|
255
|
+
- views/home/action.erb
|
|
256
|
+
- views/home/report.erb
|
|
257
|
+
- views/layout.erb
|
|
258
|
+
- views/logs.erb
|
|
259
|
+
- views/logs/log_line.erb
|
|
260
|
+
- views/nav/arrow.erb
|
|
261
|
+
homepage: https://rubygems.org/gems/pcelka
|
|
262
|
+
licenses:
|
|
263
|
+
- MIT
|
|
264
|
+
metadata: {}
|
|
265
|
+
rdoc_options: []
|
|
266
|
+
require_paths:
|
|
267
|
+
- lib
|
|
268
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
269
|
+
requirements:
|
|
270
|
+
- - "~>"
|
|
271
|
+
- !ruby/object:Gem::Version
|
|
272
|
+
version: '4.0'
|
|
273
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
274
|
+
requirements:
|
|
275
|
+
- - ">="
|
|
276
|
+
- !ruby/object:Gem::Version
|
|
277
|
+
version: '0'
|
|
278
|
+
requirements: []
|
|
279
|
+
rubygems_version: 4.0.7
|
|
280
|
+
specification_version: 4
|
|
281
|
+
summary: Program runner
|
|
282
|
+
test_files: []
|