├── .autotest ├── .gitignore ├── History.txt ├── LICENSE.txt ├── Manifest.txt ├── README.rdoc ├── README.txt ├── Rakefile ├── examples ├── example.rb ├── mapcolor.rb └── queens.rb ├── lib └── ambit.rb └── test └── test_ambit.rb /.autotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimwise/ambit/HEAD/.autotest -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | doc 2 | pkg 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimwise/ambit/HEAD/History.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimwise/ambit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimwise/ambit/HEAD/Manifest.txt -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimwise/ambit/HEAD/README.rdoc -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- 1 | README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimwise/ambit/HEAD/Rakefile -------------------------------------------------------------------------------- /examples/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimwise/ambit/HEAD/examples/example.rb -------------------------------------------------------------------------------- /examples/mapcolor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimwise/ambit/HEAD/examples/mapcolor.rb -------------------------------------------------------------------------------- /examples/queens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimwise/ambit/HEAD/examples/queens.rb -------------------------------------------------------------------------------- /lib/ambit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimwise/ambit/HEAD/lib/ambit.rb -------------------------------------------------------------------------------- /test/test_ambit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimwise/ambit/HEAD/test/test_ambit.rb --------------------------------------------------------------------------------