// in radrails when you import a project from subversion
// it is a normal project
// in the menu I found no way to transform it
// but so it worked for me:
// 1. edit the .project file and copy the natueres block
1
2 <natures>
3 <nature>org.radrails.rails.ui.railsnature</nature>
4 <nature>org.rubypeople.rdt.core.rubynature</nature>
5 </natures>
// 2. copy the buildSpec block too
// (I'm not sure if this is necessary, I did both and it worked)
1
2 <buildSpec>
3 <buildCommand>
4 <name>org.rubypeople.rdt.core.rubybuilder</name>
5 <arguments>
6 </arguments>
7 </buildCommand>
8 </buildSpec>
// 3. restart radrails and
// 4. add a webrick-server to the project
// and you are done