Zeck
Zeck

Reputation: 6579

Running rails application inside a Ruby gem?

Is it possible to running embedded rails application inside a Ruby gem? How?

Upvotes: 1

Views: 124

Answers (1)

Ryan Bigg
Ryan Bigg

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

Related Questions