defmodule Export do @moduledoc """ [Erlport](http://erlport.org/) wrapper for Elixir. ## Installation Add export to your list of dependencies in `mix.exs`: ```elixir def deps do [ {:export, "~> 0.0.7"}, {:erlport, github: "hdima/erlport", manager: :make} ] end ``` ## Usage ### Ruby ```elixir defmodule SomeRubyCall do use Export.Ruby def call_ruby_method # path to ruby files {:ok, ruby} = Ruby.start(ruby_lib: Path.expand("lib/ruby")) # call "upcase" method from "test" file with "hello" argument ruby |> Ruby.call("test", "upcase", ["hello"]) # same as above but prettier ruby |> Ruby.call(upcase("hello"), from_file: "test") end end ``` ### Python ```elixir defmodule SomePythonCall do use Export.Python def call_python_method # path to our python files {:ok, py} = Python.start(python_path: Path.expand("lib/python")) # call "upcase" method from "test" file with "hello" argument py |> Python.call("test", "upcase", ["hello"]) # same as above but prettier py |> Python.call(upcase("hello"), from_file: "test") end end ``` """ end