├── .document ├── .gitignore ├── .olddoc.yml ├── COPYING ├── COPYING-GPL2 ├── Documentation ├── .gitignore ├── GNUmakefile └── posix-mq-rb.1.txt ├── GIT-VERSION-GEN ├── GNUmakefile ├── LICENSE ├── README ├── archive ├── .gitignore └── slrnpull.conf ├── bin └── posix-mq-rb ├── ext └── posix_mq │ ├── extconf.rb │ └── posix_mq.c ├── lib └── posix_mq.rb ├── pkg.mk ├── posix_mq.gemspec ├── setup.rb └── test └── test_posix_mq.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/.gitignore -------------------------------------------------------------------------------- /.olddoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/.olddoc.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING-GPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/COPYING-GPL2 -------------------------------------------------------------------------------- /Documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/Documentation/.gitignore -------------------------------------------------------------------------------- /Documentation/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/Documentation/GNUmakefile -------------------------------------------------------------------------------- /Documentation/posix-mq-rb.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/Documentation/posix-mq-rb.1.txt -------------------------------------------------------------------------------- /GIT-VERSION-GEN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/GIT-VERSION-GEN -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/README -------------------------------------------------------------------------------- /archive/.gitignore: -------------------------------------------------------------------------------- 1 | /data 2 | /news 3 | /requests 4 | -------------------------------------------------------------------------------- /archive/slrnpull.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/archive/slrnpull.conf -------------------------------------------------------------------------------- /bin/posix-mq-rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/bin/posix-mq-rb -------------------------------------------------------------------------------- /ext/posix_mq/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/ext/posix_mq/extconf.rb -------------------------------------------------------------------------------- /ext/posix_mq/posix_mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/ext/posix_mq/posix_mq.c -------------------------------------------------------------------------------- /lib/posix_mq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/lib/posix_mq.rb -------------------------------------------------------------------------------- /pkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/pkg.mk -------------------------------------------------------------------------------- /posix_mq.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/posix_mq.gemspec -------------------------------------------------------------------------------- /setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/setup.rb -------------------------------------------------------------------------------- /test/test_posix_mq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmm1/ruby_posix_mq/HEAD/test/test_posix_mq.rb --------------------------------------------------------------------------------