I have a Rails 3.2.16 app with multiple git branches (for testing features). I use thin
to spin up a server in development. If I have a branch called "dev" for instance and I'm currently checked out to that branch in git. By default thin
will pickup whatever is in the app directory and serve it up. But what if I wanted serve up what is in the master branch. Is there any way to serve up the master branch in thin (or even in rails s
so I can work with the app in that branch in a browser?
So basically I have multiple branches, but want to test the app in the browser using a certain branch. How can I do that?