Reputation: 6579
Is it possible to running embedded rails application inside a Ruby gem? How?
Upvotes: 1
Views: 124
Reputation: 107718
Yes, see how the rails plugin new --full --mountable
command's output contains the test/dummy
Rails application.
This command will actually generate a gem structure for a Rails engine.
Upvotes: 1