I installed Rails 4.2.0.beta2 per the instructions in RailsTutorial.org 3rd Edition (the one that just came out). I'm not using the cloudIDE and am instead using Ubuntu Trusty 32 via Vagrant on a Windows 7 host with RVM.
Did rails _4.2.0.beta2_ new hello_app
and then pasted in his gemfile sample.
After that, I ran:
$ bundle install
$ rails s
Server starts fine, however when I try to connect to localhost:3000
I get "Server Not Found"
Weirder still, I have a couple other Rails starter projects I've been tinkering with that use Rails 4.0.3 and 4.1.6 and I'm able to connect to the server there just fine.
What am I missing here? Why can't my browser connect when I've created a new Rails project with the latest version, but it works fine with older versions?
Also, I tried wget http://0.0.0.0:3000
and while it connected and received a 200 response, the length was unspecified, whereas in another brand new Rails app under an old version, I would get the actual file size of whatever index.html
was.