gloo 0.7.2 → 0.7.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/.gitignore +1 -0
- data/.rubocop.yml +38 -4
- data/Gemfile +4 -0
- data/Gemfile.lock +43 -17
- data/gloo.gemspec +3 -0
- data/lib/VERSION +1 -0
- data/lib/gloo/app/engine.rb +4 -4
- data/lib/gloo/app/info.rb +11 -1
- data/lib/gloo/app/settings.rb +3 -3
- data/lib/gloo/core/factory.rb +22 -0
- data/lib/gloo/core/gloo_system.rb +9 -0
- data/lib/gloo/core/obj.rb +2 -0
- data/lib/gloo/help/core/gloo_system.txt +3 -0
- data/lib/gloo/help/objs/cli/bar.txt +3 -0
- data/lib/gloo/help/objs/data/mysql.txt +40 -0
- data/lib/gloo/help/objs/data/query.txt +37 -0
- data/lib/gloo/help/objs/data/sqlite.txt +26 -0
- data/lib/gloo/help/objs/dev/git_repo.txt +2 -1
- data/lib/gloo/help/objs/dev/stats.txt +36 -0
- data/lib/gloo/help/objs/system/file.txt +7 -0
- data/lib/gloo/help/objs/system/ssh_exec.txt +30 -0
- data/lib/gloo/help/objs/web/http_post.txt +2 -0
- data/lib/gloo/help/objs/web/uri.txt +2 -1
- data/lib/gloo/objs/basic/boolean.rb +3 -0
- data/lib/gloo/objs/cli/bar.rb +22 -1
- data/lib/gloo/objs/data/mysql.rb +192 -0
- data/lib/gloo/objs/data/query.rb +176 -0
- data/lib/gloo/objs/data/sqlite.rb +159 -0
- data/lib/gloo/objs/dev/git.rb +13 -1
- data/lib/gloo/objs/dev/stats.rb +120 -0
- data/lib/gloo/objs/system/file_handle.rb +10 -1
- data/lib/gloo/objs/system/ssh_exec.rb +126 -0
- data/lib/gloo/objs/web/http_post.rb +53 -16
- data/lib/gloo/objs/web/json.rb +1 -1
- data/lib/gloo/objs/web/slack.rb +1 -1
- data/lib/gloo/objs/web/teams.rb +1 -1
- data/lib/gloo/objs/web/uri.rb +18 -1
- data/lib/gloo/persist/file_loader.rb +2 -0
- data/lib/gloo/utils/format.rb +21 -0
- data/lib/gloo/utils/stats.rb +205 -0
- data/lib/gloo/verbs/execute.rb +6 -2
- data/lib/gloo.rb +2 -0
- data/lib/run.rb +3 -0
- metadata +79 -7
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gloo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Crane
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-01-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -178,6 +178,66 @@ dependencies:
|
|
|
178
178
|
- - ">="
|
|
179
179
|
- !ruby/object:Gem::Version
|
|
180
180
|
version: 2.1.0
|
|
181
|
+
- !ruby/object:Gem::Dependency
|
|
182
|
+
name: net-ssh
|
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
|
184
|
+
requirements:
|
|
185
|
+
- - "~>"
|
|
186
|
+
- !ruby/object:Gem::Version
|
|
187
|
+
version: '6.1'
|
|
188
|
+
- - ">="
|
|
189
|
+
- !ruby/object:Gem::Version
|
|
190
|
+
version: 6.1.0
|
|
191
|
+
type: :runtime
|
|
192
|
+
prerelease: false
|
|
193
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
194
|
+
requirements:
|
|
195
|
+
- - "~>"
|
|
196
|
+
- !ruby/object:Gem::Version
|
|
197
|
+
version: '6.1'
|
|
198
|
+
- - ">="
|
|
199
|
+
- !ruby/object:Gem::Version
|
|
200
|
+
version: 6.1.0
|
|
201
|
+
- !ruby/object:Gem::Dependency
|
|
202
|
+
name: mysql2
|
|
203
|
+
requirement: !ruby/object:Gem::Requirement
|
|
204
|
+
requirements:
|
|
205
|
+
- - "~>"
|
|
206
|
+
- !ruby/object:Gem::Version
|
|
207
|
+
version: '0.5'
|
|
208
|
+
- - ">="
|
|
209
|
+
- !ruby/object:Gem::Version
|
|
210
|
+
version: 0.5.3
|
|
211
|
+
type: :runtime
|
|
212
|
+
prerelease: false
|
|
213
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
214
|
+
requirements:
|
|
215
|
+
- - "~>"
|
|
216
|
+
- !ruby/object:Gem::Version
|
|
217
|
+
version: '0.5'
|
|
218
|
+
- - ">="
|
|
219
|
+
- !ruby/object:Gem::Version
|
|
220
|
+
version: 0.5.3
|
|
221
|
+
- !ruby/object:Gem::Dependency
|
|
222
|
+
name: sqlite3
|
|
223
|
+
requirement: !ruby/object:Gem::Requirement
|
|
224
|
+
requirements:
|
|
225
|
+
- - "~>"
|
|
226
|
+
- !ruby/object:Gem::Version
|
|
227
|
+
version: '1.4'
|
|
228
|
+
- - ">="
|
|
229
|
+
- !ruby/object:Gem::Version
|
|
230
|
+
version: 1.4.2
|
|
231
|
+
type: :runtime
|
|
232
|
+
prerelease: false
|
|
233
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
234
|
+
requirements:
|
|
235
|
+
- - "~>"
|
|
236
|
+
- !ruby/object:Gem::Version
|
|
237
|
+
version: '1.4'
|
|
238
|
+
- - ">="
|
|
239
|
+
- !ruby/object:Gem::Version
|
|
240
|
+
version: 1.4.2
|
|
181
241
|
description: A scripting languge to keep it all together.
|
|
182
242
|
email:
|
|
183
243
|
- eric.crane@mac.com
|
|
@@ -202,6 +262,7 @@ files:
|
|
|
202
262
|
- exe/gloo
|
|
203
263
|
- exe/o
|
|
204
264
|
- gloo.gemspec
|
|
265
|
+
- lib/VERSION
|
|
205
266
|
- lib/gloo.rb
|
|
206
267
|
- lib/gloo/app/args.rb
|
|
207
268
|
- lib/gloo/app/engine.rb
|
|
@@ -279,8 +340,12 @@ files:
|
|
|
279
340
|
- lib/gloo/help/objs/ctrl/each.txt
|
|
280
341
|
- lib/gloo/help/objs/ctrl/repeat.txt
|
|
281
342
|
- lib/gloo/help/objs/data/markdown.txt
|
|
343
|
+
- lib/gloo/help/objs/data/mysql.txt
|
|
344
|
+
- lib/gloo/help/objs/data/query.txt
|
|
345
|
+
- lib/gloo/help/objs/data/sqlite.txt
|
|
282
346
|
- lib/gloo/help/objs/data/table.txt
|
|
283
347
|
- lib/gloo/help/objs/dev/git_repo.txt
|
|
348
|
+
- lib/gloo/help/objs/dev/stats.txt
|
|
284
349
|
- lib/gloo/help/objs/dt/date.txt
|
|
285
350
|
- lib/gloo/help/objs/dt/datetime.txt
|
|
286
351
|
- lib/gloo/help/objs/dt/time.txt
|
|
@@ -289,6 +354,7 @@ files:
|
|
|
289
354
|
- lib/gloo/help/objs/snd/play.txt
|
|
290
355
|
- lib/gloo/help/objs/snd/say.txt
|
|
291
356
|
- lib/gloo/help/objs/system/file.txt
|
|
357
|
+
- lib/gloo/help/objs/system/ssh_exec.txt
|
|
292
358
|
- lib/gloo/help/objs/system/system.txt
|
|
293
359
|
- lib/gloo/help/objs/web/http_get.txt
|
|
294
360
|
- lib/gloo/help/objs/web/http_post.txt
|
|
@@ -337,8 +403,12 @@ files:
|
|
|
337
403
|
- lib/gloo/objs/ctrl/each.rb
|
|
338
404
|
- lib/gloo/objs/ctrl/repeat.rb
|
|
339
405
|
- lib/gloo/objs/data/markdown.rb
|
|
406
|
+
- lib/gloo/objs/data/mysql.rb
|
|
407
|
+
- lib/gloo/objs/data/query.rb
|
|
408
|
+
- lib/gloo/objs/data/sqlite.rb
|
|
340
409
|
- lib/gloo/objs/data/table.rb
|
|
341
410
|
- lib/gloo/objs/dev/git.rb
|
|
411
|
+
- lib/gloo/objs/dev/stats.rb
|
|
342
412
|
- lib/gloo/objs/dt/date.rb
|
|
343
413
|
- lib/gloo/objs/dt/datetime.rb
|
|
344
414
|
- lib/gloo/objs/dt/time.rb
|
|
@@ -347,6 +417,7 @@ files:
|
|
|
347
417
|
- lib/gloo/objs/snd/play.rb
|
|
348
418
|
- lib/gloo/objs/snd/say.rb
|
|
349
419
|
- lib/gloo/objs/system/file_handle.rb
|
|
420
|
+
- lib/gloo/objs/system/ssh_exec.rb
|
|
350
421
|
- lib/gloo/objs/system/system.rb
|
|
351
422
|
- lib/gloo/objs/web/http_get.rb
|
|
352
423
|
- lib/gloo/objs/web/http_post.rb
|
|
@@ -359,6 +430,8 @@ files:
|
|
|
359
430
|
- lib/gloo/persist/file_storage.rb
|
|
360
431
|
- lib/gloo/persist/line_splitter.rb
|
|
361
432
|
- lib/gloo/persist/persist_man.rb
|
|
433
|
+
- lib/gloo/utils/format.rb
|
|
434
|
+
- lib/gloo/utils/stats.rb
|
|
362
435
|
- lib/gloo/utils/words.rb
|
|
363
436
|
- lib/gloo/verbs/alert.rb
|
|
364
437
|
- lib/gloo/verbs/beep.rb
|
|
@@ -385,7 +458,7 @@ homepage: http://github.com/ecrane/gloo
|
|
|
385
458
|
licenses:
|
|
386
459
|
- MIT
|
|
387
460
|
metadata: {}
|
|
388
|
-
post_install_message:
|
|
461
|
+
post_install_message:
|
|
389
462
|
rdoc_options: []
|
|
390
463
|
require_paths:
|
|
391
464
|
- lib
|
|
@@ -400,9 +473,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
400
473
|
- !ruby/object:Gem::Version
|
|
401
474
|
version: '0'
|
|
402
475
|
requirements: []
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
signing_key:
|
|
476
|
+
rubygems_version: 3.2.22
|
|
477
|
+
signing_key:
|
|
406
478
|
specification_version: 4
|
|
407
479
|
summary: Gloo scripting language. A scripting language built on ruby.
|
|
408
480
|
test_files: []
|