prolego 0.0.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 +7 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +57 -0
- data/Rakefile +2 -0
- data/lib/prolego.rb +25 -0
- data/lib/prolego/version.rb +3 -0
- data/prolego.gemspec +23 -0
- metadata +80 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 92809bbe8fae1d623b8ed732b67cbe5efff426f4
|
4
|
+
data.tar.gz: 2863fc270846f121b9733b5b39798c0c12ddf9c7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9311c4c3dbbc9d0d300252148a15909e738254bbd3812f77d1506150b808c936ba083e4d42a3464f0b878f21067742d8fb435dad6c0cd87537e013707bfc61bd
|
7
|
+
data.tar.gz: 1f51c4e1a7e4652e1d5fde405b610ec17d5237e045c08cbba9574ba71549a8b2ef8325f18a2421c971aebc70054ad9a68dd73268137313a9ee9ac9e395a365b7
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Ricardo Piro-Rael
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
# Prolegomenon
|
2
|
+
>> "a critical or discursive introduction to a book"
|
3
|
+
|
4
|
+
This is a gem intended for UNM to interface Ruby with Prolog.
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
gem 'prolego'
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
|
16
|
+
$ bundle
|
17
|
+
|
18
|
+
Or install it yourself as:
|
19
|
+
|
20
|
+
$ gem install prolego
|
21
|
+
|
22
|
+
## Usage
|
23
|
+
|
24
|
+
Initiate a Prolog Query as a Ruby object. This expects a file to have some
|
25
|
+
predicates defined that it can use from the command line.
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
prolog=Prolego::Query.new "Top.pl"
|
29
|
+
```
|
30
|
+
|
31
|
+
After initializing this, make queries against your Prolog file. Note this runs
|
32
|
+
Prolog from the interactive mode, so no need to compile Prolog. The command
|
33
|
+
method takes two arguments, the predicate name and the argument list. The
|
34
|
+
argument list expects an **array**, so if you have arrays within your arguments,
|
35
|
+
nest them.
|
36
|
+
|
37
|
+
```ruby
|
38
|
+
prolog.command "ce",["BS",["MATH 162","ECE 230"]]
|
39
|
+
```
|
40
|
+
|
41
|
+
We have a special method called `epilog` to get our formatted output. This
|
42
|
+
splits our Prolog output for our application, based on the last command sent
|
43
|
+
from the current Prolegomenon object.
|
44
|
+
|
45
|
+
```ruby
|
46
|
+
prolog.epilog
|
47
|
+
```
|
48
|
+
|
49
|
+
## Contributing
|
50
|
+
|
51
|
+
1. Fork it ( https://github.com/[my-github-username]/prolego/fork )
|
52
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
53
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
54
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
55
|
+
5. Create a new Pull Request
|
56
|
+
|
57
|
+
> Inspired by Dr. Chris Lamb
|
data/Rakefile
ADDED
data/lib/prolego.rb
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
require "prolego/version"
|
2
|
+
|
3
|
+
module Prolego
|
4
|
+
class Query
|
5
|
+
|
6
|
+
def initialize filepath
|
7
|
+
@file=filepath
|
8
|
+
end
|
9
|
+
|
10
|
+
def command predicate,args
|
11
|
+
@output=%x[swipl -q -f #{@file} -g "#{parg predicate}(#{parg args}),halt"]
|
12
|
+
end
|
13
|
+
|
14
|
+
def parg arg
|
15
|
+
arg.to_s.gsub /^\[|"|\]$/, "[" => "", "]" => "", "\"" => "'"
|
16
|
+
end
|
17
|
+
|
18
|
+
def epilog
|
19
|
+
@output.lines.map {|x| x.slice(/.*d/).split("------").join " "}
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
|
24
|
+
|
25
|
+
end
|
data/prolego.gemspec
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'prolego/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "prolego"
|
8
|
+
spec.version = Prolego::VERSION
|
9
|
+
spec.authors = ["Ricardo Piro-Rael"]
|
10
|
+
spec.email = ["fdisk@fdisk.co"]
|
11
|
+
spec.summary = %q{This gem interfaces Ruby with Prolog via the shell.}
|
12
|
+
spec.description = %q{Designed initially for UNM Informatics lab}
|
13
|
+
spec.homepage = "https://github.com/rickpr/prolegomenon"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: prolego
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ricardo Piro-Rael
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-01-28 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.7'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description: Designed initially for UNM Informatics lab
|
42
|
+
email:
|
43
|
+
- fdisk@fdisk.co
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- Gemfile
|
50
|
+
- LICENSE.txt
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- lib/prolego.rb
|
54
|
+
- lib/prolego/version.rb
|
55
|
+
- prolego.gemspec
|
56
|
+
homepage: https://github.com/rickpr/prolegomenon
|
57
|
+
licenses:
|
58
|
+
- MIT
|
59
|
+
metadata: {}
|
60
|
+
post_install_message:
|
61
|
+
rdoc_options: []
|
62
|
+
require_paths:
|
63
|
+
- lib
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0'
|
74
|
+
requirements: []
|
75
|
+
rubyforge_project:
|
76
|
+
rubygems_version: 2.4.4
|
77
|
+
signing_key:
|
78
|
+
specification_version: 4
|
79
|
+
summary: This gem interfaces Ruby with Prolog via the shell.
|
80
|
+
test_files: []
|