I am trying to install a couple of gems shich include Rails generators. They were not installing properly until I restarted the WEBrick server. Is this common? Will I always have to restart the WEBrick server after installing new gems?
Asked
Active
Viewed 51 times
0
-
Yes..It is common..As after installing any new gem, you have to restart your server – Vrushali Pawar Sep 14 '15 at 12:09
-
The generators themselves should work fine. The functionality they generate may or may not require a restart. – Dave Newton Sep 14 '15 at 12:11
-
@RORDeveloper You should add that in an answer, so I can upvote. – Sep 14 '15 at 12:13
-
@DaveNewton You should add that in an answer, so I can upvote. – Sep 14 '15 at 12:14
1 Answers
0
After installing any new gem that affect the runtime app environment, you have to restart your server. After generation of a model or a controller or creation of a view you don't have to restart the server

Vrushali Pawar
- 3,753
- 1
- 13
- 22
-
This depends on what the gem does, not all gems affect runtime app behavior. – Dave Newton Sep 14 '15 at 12:43