galaaz 2.1.2 → 2.1.4
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 +38 -3
- data/README.md +71 -4
- data/bin/gknit +11 -1
- data/blogs/gknit/gknit.Rmd +2 -1
- data/blogs/gknit/gknit.md +2 -1
- data/blogs/manual/manual.Rmd +66 -3
- data/blogs/manual/manual.md +71 -4
- data/ext/new_bridge/galaaz_gatekeeper_phase1.cpp +13 -3
- data/lib/R_interface/new_bridge_adapter.rb +14 -1
- data/lib/R_interface/r.rb +60 -53
- data/lib/R_interface/r_job.rb +429 -0
- data/lib/galaaz/cli.rb +15 -1
- data/lib/gknit/diagnostics.rb +3 -1
- data/lib/new_bridge/session_client.rb +45 -0
- data/specs/gknit_install_timeout_report_spec.rb +27 -7
- data/specs/r_job_spec.rb +81 -0
- data/version.rb +1 -1
- metadata +10 -5
data/version.rb
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$gem_name = "galaaz"
|
|
2
|
-
$version="2.1.
|
|
2
|
+
$version="2.1.4"
|
metadata
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: galaaz
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rodrigo Botafogo
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
11
|
date: 2026-09-04 00:00:00.000000000 Z
|
|
@@ -86,11 +87,11 @@ description: |
|
|
|
86
87
|
email: rodrigo.a.botafogo@gmail.com
|
|
87
88
|
executables:
|
|
88
89
|
- galaaz
|
|
89
|
-
-
|
|
90
|
+
- gstudio
|
|
90
91
|
- gknit
|
|
91
|
-
-
|
|
92
|
+
- gbookdown
|
|
92
93
|
- grun
|
|
93
|
-
-
|
|
94
|
+
- gknit-draft
|
|
94
95
|
extensions: []
|
|
95
96
|
extra_rdoc_files: []
|
|
96
97
|
files:
|
|
@@ -310,6 +311,7 @@ files:
|
|
|
310
311
|
- lib/R_interface/new_bridge_adapter.rb
|
|
311
312
|
- lib/R_interface/r.rb
|
|
312
313
|
- lib/R_interface/r_arrow.rb
|
|
314
|
+
- lib/R_interface/r_job.rb
|
|
313
315
|
- lib/R_interface/r_libs.R
|
|
314
316
|
- lib/R_interface/r_methods.rb
|
|
315
317
|
- lib/R_interface/r_module_s.rb
|
|
@@ -450,6 +452,7 @@ files:
|
|
|
450
452
|
- specs/r_eval.spec.rb
|
|
451
453
|
- specs/r_function.spec.rb
|
|
452
454
|
- specs/r_instance_manager_spec.rb
|
|
455
|
+
- specs/r_job_spec.rb
|
|
453
456
|
- specs/r_list_apply.spec.rb
|
|
454
457
|
- specs/r_matrix.spec.rb
|
|
455
458
|
- specs/r_nse.spec.rb
|
|
@@ -484,6 +487,7 @@ metadata:
|
|
|
484
487
|
documentation_uri: https://rbotafogo.github.io/galaaz/
|
|
485
488
|
changelog_uri: https://github.com/rbotafogo/galaaz/blob/galaaz2_0/CHANGELOG.md
|
|
486
489
|
yard.run: yri
|
|
490
|
+
post_install_message:
|
|
487
491
|
rdoc_options: []
|
|
488
492
|
require_paths:
|
|
489
493
|
- lib
|
|
@@ -498,7 +502,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
498
502
|
- !ruby/object:Gem::Version
|
|
499
503
|
version: '0'
|
|
500
504
|
requirements: []
|
|
501
|
-
rubygems_version:
|
|
505
|
+
rubygems_version: 3.5.22
|
|
506
|
+
signing_key:
|
|
502
507
|
specification_version: 4
|
|
503
508
|
summary: 'R-on-Rails: tightly couple Ruby and GNU R for data science on the web'
|
|
504
509
|
test_files: []
|