- Open the target Rails project, where an engine should be embedded.
- Open for editing the Gemfile, and add the following line:
gem '<engine name>', :path => "<absolute path to the Rails mountable engine project>"
- Open for editing Config/routes.rb, and add the following line:
mount <engine name>::Engine, :at => "/<engine name>"

