Skip to content

Instantly share code, notes, and snippets.

@greggy
Created November 13, 2011 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greggy/1362002 to your computer and use it in GitHub Desktop.
Save greggy/1362002 to your computer and use it in GitHub Desktop.
diff --git a/README.txt b/README.txt
index 8ac5719..136cf76 100644
--- a/README.txt
+++ b/README.txt
@@ -19,6 +19,17 @@ Run the appropriate script:
This script will compile the .erl files in the Misultin src directory and save the compiled files into the
ebin directory.
+ 1.1 Dependents
+
+ Misultin uses few functions from inets. If you use misultin in your project and use rebar to generate
+ releases, you should add lines into reltool.config like (the default policy is exclude all):
+
+ {sys, [
+ {incl_cond, exclude},
+ ...
+ {app, inets, [{incl_cond, include}]},
+ ...
+
2. (Optional) Copy Misultin files
This optional step will allow Misultin to be called from modules running from any directory on your file
diff --git a/src/misultin.app.src b/src/misultin.app.src
index 174f5d2..b53a003 100644
--- a/src/misultin.app.src
+++ b/src/misultin.app.src
@@ -16,5 +16,5 @@
]},
{registered, []},
{env, []},
- {applications, [kernel, stdlib]}
+ {applications, [kernel, stdlib, inets]}
]}.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment