Reputation: 477
I use RubyMine.
When I created a project, a directory was automatically set to the "library root" as shown below.
I would like to remove this library root, but I could not find a way to do so in my search.
(I also tried the method in the following article, but it did not solve my case)
The environment settings (project configuration) are as follows
If you know how to unlock the LIBRARY route, I would appreciate it if you could let me know.
Upvotes: 2
Views: 693
Reputation: 4777
I am working on a pretty large rails application that uses multiple engines nested inside each other. The only way to solve the issue was to edit the .idea/<your_project_name>.iml
.
More specificly I had to remove all the <excluded>
-nodes.
They look something like this:
<excluded>
<root url="file://$MODULE_DIR$/foo/bin" />
...
</excluded>
Remove them and then restart Rubymine.
Upvotes: 0
Reputation: 633
Project Structure
(Press CMD + ;
on MacOS)Platform Setting
- SDKs
.Classpath
. Remove it if yes.Upvotes: 1
Reputation: 1
First, make sure that the ancestor of the 'library root' folder is marked as 'excluded.'
Second, use the 'Repair IDE' under the 'File' tab to reindex all the files.
Last, wait for all the steps to be finished. Then the 'library root' label should disappear.
Upvotes: -1