├── .formatter.exs ├── .gitignore ├── LICENSE.md ├── README.md ├── lib └── beam_to_ex.ex ├── mix.exs ├── mix.lock ├── run.exs └── test ├── beam_to_ex_test.exs ├── helloworld.erl └── test_helper.exs /.formatter.exs: -------------------------------------------------------------------------------- 1 | [ 2 | inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"] 3 | ] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olafura/beam_to_ex/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olafura/beam_to_ex/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olafura/beam_to_ex/HEAD/README.md -------------------------------------------------------------------------------- /lib/beam_to_ex.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olafura/beam_to_ex/HEAD/lib/beam_to_ex.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olafura/beam_to_ex/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olafura/beam_to_ex/HEAD/mix.lock -------------------------------------------------------------------------------- /run.exs: -------------------------------------------------------------------------------- 1 | BeamToEx.main(System.argv()) 2 | -------------------------------------------------------------------------------- /test/beam_to_ex_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olafura/beam_to_ex/HEAD/test/beam_to_ex_test.exs -------------------------------------------------------------------------------- /test/helloworld.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olafura/beam_to_ex/HEAD/test/helloworld.erl -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------