├── .gitignore ├── AUTHORS ├── CHANGES ├── CONTRIBUTORS ├── LICENSE ├── Makefile ├── README.rst ├── TODO ├── dialyzer.ignore ├── doc ├── .gitignore └── overview.edoc ├── ebin └── erlport.app ├── get_versions ├── print_versions ├── priv ├── python2 │ ├── .gitignore │ ├── Makefile │ └── erlport │ │ ├── __init__.py │ │ ├── cli.py │ │ ├── erlang.py │ │ ├── erlproto.py │ │ ├── erlterms.py │ │ ├── python.py │ │ ├── stdio.py │ │ └── tests │ │ ├── __init__.py │ │ ├── erlproto_tests.py │ │ ├── erlterms_tests.py │ │ └── stdio_tests.py ├── python3 │ ├── .gitignore │ ├── Makefile │ └── erlport │ │ ├── erlang.py │ │ ├── erlproto.py │ │ ├── erlterms.py │ │ ├── stdio.py │ │ └── tests │ │ ├── __init__.py │ │ ├── erlproto_tests.py │ │ ├── erlterms_tests.py │ │ └── stdio_tests.py ├── ruby1.8 │ ├── Makefile │ ├── erlport │ │ ├── cli.rb │ │ ├── erlang.rb │ │ ├── erlproto.rb │ │ ├── erlterms.rb │ │ ├── errors.rb │ │ └── stdio.rb │ └── test │ │ ├── erlproto_tests.rb │ │ ├── erlterms_tests.rb │ │ └── tests.rb └── ruby1.9 │ ├── .gitignore │ ├── Makefile │ ├── erlport │ └── erlterms.rb │ └── test │ └── erlterms_tests.rb ├── rebar.config ├── release ├── releaseall ├── runtest ├── src ├── erlport.erl ├── erlport.hrl ├── erlport_options.erl ├── erlport_utils.erl ├── python.erl ├── python.hrl ├── python_options.erl ├── ruby.erl ├── ruby.hrl └── ruby_options.erl ├── test ├── datatype_test_data.erl ├── erlport_test_utils.erl ├── erlport_test_utils.hrl ├── python2 │ ├── python2_tests.erl │ └── test_utils.py ├── python3 │ ├── python3_tests.erl │ └── test_utils.py ├── python_options_tests.erl ├── ruby1.8 │ ├── ruby18_tests.erl │ └── test_utils.rb ├── ruby1.9 │ ├── ruby19_tests.erl │ └── test_utils.rb └── ruby_options_tests.erl └── testall /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.py[co] 3 | *.beam 4 | /.eunit 5 | /sandbox 6 | /packages 7 | /testall.log 8 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | - `Dmitry Vasiliev `_ 2 | -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/CHANGES -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/README.rst -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/TODO -------------------------------------------------------------------------------- /dialyzer.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/dialyzer.ignore -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.png 3 | *.css 4 | edoc-info 5 | -------------------------------------------------------------------------------- /doc/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/doc/overview.edoc -------------------------------------------------------------------------------- /ebin/erlport.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/ebin/erlport.app -------------------------------------------------------------------------------- /get_versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/get_versions -------------------------------------------------------------------------------- /print_versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/print_versions -------------------------------------------------------------------------------- /priv/python2/.gitignore: -------------------------------------------------------------------------------- 1 | .cover 2 | -------------------------------------------------------------------------------- /priv/python2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python2/Makefile -------------------------------------------------------------------------------- /priv/python2/erlport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python2/erlport/__init__.py -------------------------------------------------------------------------------- /priv/python2/erlport/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python2/erlport/cli.py -------------------------------------------------------------------------------- /priv/python2/erlport/erlang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python2/erlport/erlang.py -------------------------------------------------------------------------------- /priv/python2/erlport/erlproto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python2/erlport/erlproto.py -------------------------------------------------------------------------------- /priv/python2/erlport/erlterms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python2/erlport/erlterms.py -------------------------------------------------------------------------------- /priv/python2/erlport/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python2/erlport/python.py -------------------------------------------------------------------------------- /priv/python2/erlport/stdio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python2/erlport/stdio.py -------------------------------------------------------------------------------- /priv/python2/erlport/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python2/erlport/tests/__init__.py -------------------------------------------------------------------------------- /priv/python2/erlport/tests/erlproto_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python2/erlport/tests/erlproto_tests.py -------------------------------------------------------------------------------- /priv/python2/erlport/tests/erlterms_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python2/erlport/tests/erlterms_tests.py -------------------------------------------------------------------------------- /priv/python2/erlport/tests/stdio_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python2/erlport/tests/stdio_tests.py -------------------------------------------------------------------------------- /priv/python3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python3/.gitignore -------------------------------------------------------------------------------- /priv/python3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python3/Makefile -------------------------------------------------------------------------------- /priv/python3/erlport/erlang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python3/erlport/erlang.py -------------------------------------------------------------------------------- /priv/python3/erlport/erlproto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python3/erlport/erlproto.py -------------------------------------------------------------------------------- /priv/python3/erlport/erlterms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python3/erlport/erlterms.py -------------------------------------------------------------------------------- /priv/python3/erlport/stdio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python3/erlport/stdio.py -------------------------------------------------------------------------------- /priv/python3/erlport/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python3/erlport/tests/__init__.py -------------------------------------------------------------------------------- /priv/python3/erlport/tests/erlproto_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python3/erlport/tests/erlproto_tests.py -------------------------------------------------------------------------------- /priv/python3/erlport/tests/erlterms_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python3/erlport/tests/erlterms_tests.py -------------------------------------------------------------------------------- /priv/python3/erlport/tests/stdio_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/python3/erlport/tests/stdio_tests.py -------------------------------------------------------------------------------- /priv/ruby1.8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.8/Makefile -------------------------------------------------------------------------------- /priv/ruby1.8/erlport/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.8/erlport/cli.rb -------------------------------------------------------------------------------- /priv/ruby1.8/erlport/erlang.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.8/erlport/erlang.rb -------------------------------------------------------------------------------- /priv/ruby1.8/erlport/erlproto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.8/erlport/erlproto.rb -------------------------------------------------------------------------------- /priv/ruby1.8/erlport/erlterms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.8/erlport/erlterms.rb -------------------------------------------------------------------------------- /priv/ruby1.8/erlport/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.8/erlport/errors.rb -------------------------------------------------------------------------------- /priv/ruby1.8/erlport/stdio.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.8/erlport/stdio.rb -------------------------------------------------------------------------------- /priv/ruby1.8/test/erlproto_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.8/test/erlproto_tests.rb -------------------------------------------------------------------------------- /priv/ruby1.8/test/erlterms_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.8/test/erlterms_tests.rb -------------------------------------------------------------------------------- /priv/ruby1.8/test/tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.8/test/tests.rb -------------------------------------------------------------------------------- /priv/ruby1.9/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.9/.gitignore -------------------------------------------------------------------------------- /priv/ruby1.9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.9/Makefile -------------------------------------------------------------------------------- /priv/ruby1.9/erlport/erlterms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.9/erlport/erlterms.rb -------------------------------------------------------------------------------- /priv/ruby1.9/test/erlterms_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/priv/ruby1.9/test/erlterms_tests.rb -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/rebar.config -------------------------------------------------------------------------------- /release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/release -------------------------------------------------------------------------------- /releaseall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/releaseall -------------------------------------------------------------------------------- /runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/runtest -------------------------------------------------------------------------------- /src/erlport.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/src/erlport.erl -------------------------------------------------------------------------------- /src/erlport.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/src/erlport.hrl -------------------------------------------------------------------------------- /src/erlport_options.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/src/erlport_options.erl -------------------------------------------------------------------------------- /src/erlport_utils.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/src/erlport_utils.erl -------------------------------------------------------------------------------- /src/python.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/src/python.erl -------------------------------------------------------------------------------- /src/python.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/src/python.hrl -------------------------------------------------------------------------------- /src/python_options.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/src/python_options.erl -------------------------------------------------------------------------------- /src/ruby.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/src/ruby.erl -------------------------------------------------------------------------------- /src/ruby.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/src/ruby.hrl -------------------------------------------------------------------------------- /src/ruby_options.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/src/ruby_options.erl -------------------------------------------------------------------------------- /test/datatype_test_data.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/test/datatype_test_data.erl -------------------------------------------------------------------------------- /test/erlport_test_utils.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/test/erlport_test_utils.erl -------------------------------------------------------------------------------- /test/erlport_test_utils.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/test/erlport_test_utils.hrl -------------------------------------------------------------------------------- /test/python2/python2_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/test/python2/python2_tests.erl -------------------------------------------------------------------------------- /test/python2/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/test/python2/test_utils.py -------------------------------------------------------------------------------- /test/python3/python3_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/test/python3/python3_tests.erl -------------------------------------------------------------------------------- /test/python3/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/test/python3/test_utils.py -------------------------------------------------------------------------------- /test/python_options_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/test/python_options_tests.erl -------------------------------------------------------------------------------- /test/ruby1.8/ruby18_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/test/ruby1.8/ruby18_tests.erl -------------------------------------------------------------------------------- /test/ruby1.8/test_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/test/ruby1.8/test_utils.rb -------------------------------------------------------------------------------- /test/ruby1.9/ruby19_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/test/ruby1.9/ruby19_tests.erl -------------------------------------------------------------------------------- /test/ruby1.9/test_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/test/ruby1.9/test_utils.rb -------------------------------------------------------------------------------- /test/ruby_options_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/test/ruby_options_tests.erl -------------------------------------------------------------------------------- /testall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdima/erlport/HEAD/testall --------------------------------------------------------------------------------