prolog_mqi 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8abe4438970b7b52d37ea9a90606f117ec3da035979338ed5b3dae270480eee
4
- data.tar.gz: 59a42726e7e3caf68180cee92bba94c33a76935d36ffca278dc7e3dc690e159d
3
+ metadata.gz: 9c109ed3ef0a3a3cba8c8e5defde6ba32e4b5160cc2fd4b8d9d2a2c181453df6
4
+ data.tar.gz: 38d01627cce8f28cf8566d438a20aef0a7f609a2f1512c782fc289043efbb40a
5
5
  SHA512:
6
- metadata.gz: 84e2d5b237865b9cf9fe3d9f5a8fab0db15d3b30e2a6eb2d6bf3cf301be9c042bcc20b848e3585ecc2c0751b1a1b86f97bc7997709193552a1bc7002393844a7
7
- data.tar.gz: 41c934900602039472f413fc0ee31b6beeaf0b3a51466af41173ebbb51cba0ee57cf9bc31c6c644345f7f5702a551c314906f2fce09caeea69c477401036cfe1
6
+ metadata.gz: 8b586c21226e11c7fd3af8244e4e0941b5aa7c065e5a09755aceff68c979dc491f8d346aa4471584804d48cd70f1a5412dde80c8d624788a21e0b32055be169f
7
+ data.tar.gz: 7098791a95a9a79e4e838434740f1517771221b6a880cbda32641fd0c07ab27409b6a371212b3ae2d405f18bff6998c62aac63feed500c619d796301c23efeb7
@@ -23,7 +23,6 @@ module PrologMQI
23
23
 
24
24
  def start
25
25
  # Start prolog process
26
-
27
26
  @stdin, @stdout, @stderr, @process =
28
27
  Open3.popen3('swipl', '--quiet', '-g', 'mqi_start', '-t', 'halt', '--', '--write_connection_values=true',
29
28
  '--create_unix_domain_socket=true')
@@ -29,7 +29,12 @@ module PrologMQI
29
29
  end
30
30
 
31
31
  def args
32
- @term['args']
32
+ @term['args'].map do |arg|
33
+ next nil if arg == 'nil'
34
+ next arg.to_i if arg.is_a?(String) && arg.to_i.to_s == arg
35
+
36
+ arg
37
+ end
33
38
  end
34
39
  end
35
40
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PrologMQI
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
data/prolog_mqi.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Delton Ding']
9
9
  spec.email = ['shenghao.ding@yetanother.ai']
10
10
 
11
- spec.summary = 'Write a short summary, because RubyGems requires one.'
12
- spec.description = 'Write a longer description or delete this line.'
11
+ spec.summary = 'Yet Another Prolog Interface for Ruby.'
12
+ spec.description = 'A PrologMQI implementation in Ruby.'
13
13
  spec.homepage = 'https://github.com/yet-another-ai/prologmqi.rb'
14
14
  spec.license = 'MIT'
15
15
  spec.required_ruby_version = '>= 3.0.0'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prolog_mqi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delton Ding
@@ -10,7 +10,7 @@ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2023-07-01 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Write a longer description or delete this line.
13
+ description: A PrologMQI implementation in Ruby.
14
14
  email:
15
15
  - shenghao.ding@yetanother.ai
16
16
  executables: []
@@ -20,7 +20,6 @@ files:
20
20
  - ".rubocop.yml"
21
21
  - CODE_OF_CONDUCT.md
22
22
  - Gemfile
23
- - Gemfile.lock
24
23
  - LICENSE
25
24
  - LICENSE.txt
26
25
  - README.md
@@ -57,5 +56,5 @@ requirements: []
57
56
  rubygems_version: 3.4.10
58
57
  signing_key:
59
58
  specification_version: 4
60
- summary: Write a short summary, because RubyGems requires one.
59
+ summary: Yet Another Prolog Interface for Ruby.
61
60
  test_files: []
data/Gemfile.lock DELETED
@@ -1,54 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- prolog_mqi (0.1.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- ast (2.4.2)
10
- json (2.6.3)
11
- language_server-protocol (3.17.0.3)
12
- minitest (5.18.1)
13
- parallel (1.23.0)
14
- parser (3.2.2.3)
15
- ast (~> 2.4.1)
16
- racc
17
- racc (1.7.1)
18
- rainbow (3.1.1)
19
- rake (13.0.6)
20
- regexp_parser (2.8.1)
21
- rexml (3.2.5)
22
- rubocop (1.53.1)
23
- json (~> 2.3)
24
- language_server-protocol (>= 3.17.0)
25
- parallel (~> 1.10)
26
- parser (>= 3.2.2.3)
27
- rainbow (>= 2.2.2, < 4.0)
28
- regexp_parser (>= 1.8, < 3.0)
29
- rexml (>= 3.2.5, < 4.0)
30
- rubocop-ast (>= 1.28.0, < 2.0)
31
- ruby-progressbar (~> 1.7)
32
- unicode-display_width (>= 2.4.0, < 3.0)
33
- rubocop-ast (1.29.0)
34
- parser (>= 3.2.1.0)
35
- rubocop-minitest (0.31.0)
36
- rubocop (>= 1.39, < 2.0)
37
- rubocop-rake (0.6.0)
38
- rubocop (~> 1.0)
39
- ruby-progressbar (1.13.0)
40
- unicode-display_width (2.4.2)
41
-
42
- PLATFORMS
43
- x86_64-linux
44
-
45
- DEPENDENCIES
46
- minitest (~> 5.0)
47
- prolog_mqi!
48
- rake (~> 13.0)
49
- rubocop
50
- rubocop-minitest
51
- rubocop-rake
52
-
53
- BUNDLED WITH
54
- 2.4.10