3 | | After start up you can use the ri module to interact easily with the tool. With this you can add files/directories to the database, run semantic queries, create backups, or even do transformations, etc. |
4 | | |
5 | | |
6 | | == General help == |
7 | | Help can be acquired in ri with |
| 3 | |
| 4 | When running !RefactorErl, you can control the tool via function calls typed into the Erlang shell. !RefactorErl has many features, and is quite a complex system with dozen of functions whose name we do not expect our users to remember. In order to ease and unify the command-level access to all the analysis and refactoring functionality, we have designed a group of Erlang functions that cover the most frequently used features of the tool. The module these functions are located in is called {{{ri}}}, you can use this module to interact easily with the tool. You can add files/directories to the database, run semantic queries, create backups, or even do transformations via this Erlang-level interface. |
| 5 | |
| 6 | == Command-line help == |
| 7 | |
| 8 | Help can be acquired in {{{ri}}} with |
42 | | This function can also take a list of build parameters. This feature is mostly |
43 | | used through development. |
44 | | Note that this function tries to compile the C++ files as well, if these were |
45 | | not compiled before. So if you want to prevent this, then you have to specify the |
46 | | no_nif additional parameter to the function. So in this case the recompilation |
47 | | looks like this: |
48 | | |
49 | | {{{ |
50 | | ri:build(no_nif). |
51 | | }}} |
52 | | |
| 41 | You can also specify build parameters, but this feature is mostly applied through the development, so please find the module documentation for the details. Note that this build function tries to compile the C++ files as well, if they have not been compiled yet. If you want to prevent the C++ compilation, you can use the {{{no_nif}}} build parameter. |