├── .gitignore ├── Gemfile ├── README.md ├── Rakefile ├── bin ├── ruby-prolog-acls └── ruby-prolog-hanoi ├── lib ├── ruby-prolog.rb └── ruby-prolog │ ├── ruby-prolog.rb │ └── version.rb ├── ruby-prolog.gemspec └── test ├── lib └── ruby-prolog │ └── ruby-prolog_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preston/ruby-prolog/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preston/ruby-prolog/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preston/ruby-prolog/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preston/ruby-prolog/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/ruby-prolog-acls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preston/ruby-prolog/HEAD/bin/ruby-prolog-acls -------------------------------------------------------------------------------- /bin/ruby-prolog-hanoi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preston/ruby-prolog/HEAD/bin/ruby-prolog-hanoi -------------------------------------------------------------------------------- /lib/ruby-prolog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preston/ruby-prolog/HEAD/lib/ruby-prolog.rb -------------------------------------------------------------------------------- /lib/ruby-prolog/ruby-prolog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preston/ruby-prolog/HEAD/lib/ruby-prolog/ruby-prolog.rb -------------------------------------------------------------------------------- /lib/ruby-prolog/version.rb: -------------------------------------------------------------------------------- 1 | module RubyProlog 2 | 3 | VERSION = '2.5.0' 4 | 5 | end -------------------------------------------------------------------------------- /ruby-prolog.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preston/ruby-prolog/HEAD/ruby-prolog.gemspec -------------------------------------------------------------------------------- /test/lib/ruby-prolog/ruby-prolog_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preston/ruby-prolog/HEAD/test/lib/ruby-prolog/ruby-prolog_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preston/ruby-prolog/HEAD/test/test_helper.rb --------------------------------------------------------------------------------