I am running Passenger 3.0.13 with Apache 2.2.21 (I believe) on a MacMini running the latest version of Lion Server. I installed it in conjunction with RVM using the instructions on https://rvm.io/integration/passenger/. I used the echo statement in lieu of creating a .rvmrc file. It has been working really well since deploying my first Rails application a few months ago. However of late I have noticed something weird in recent weeks.
I have noticed that when I am making modifications to my application in development mode the updates will appear in production without me deploying the changes. When I installed Passenger I did not make any custom modifications. From what I could tell I was not having this problem a while back. Normally when I develop my application code I will switch from development (localhost) to production (pointing to my domain) just to see how things are changing. However now from time to time I will see my development changes in production without me doing anything but changing and saving the text files where my code resides.
These are the commands I use to deploy my Rails application to production: rake assets:clean && rake assets:precompile && touch ~/Sites/iktusnetlive_RoR/tmp/restart.txt
At first I was only working on administrative functions that only administrators would see. Now I am at a point where I am working on a view that would be exposed to our end users which I obviously do not want. In fact when I started the changes to the view this morning they deployed on their own again. When I went to the production website the page crashed because the database model did not exist. I had to move everything to production to create the database model to reduce the exposure to my end users.
I posted this on Novenber 7th in the Passenger Google Group but have not received a response from them. I really need a solution to this but cannot find one online anywhere.
Any help would be appreciated. Thanks so much.