belurgsu
belurgsu

Reputation: 31

does Ruby On Rails require internet connection

Does developing in Ruby On Rails require internet connection..or can it be developed without internet connection ..(after installing rails,other gems etc with internet connection)?

Upvotes: 2

Views: 1642

Answers (4)

ysrb
ysrb

Reputation: 6740

No you don't need. You need internet for installing gems. But not for using Ruby On Rails

Upvotes: 1

Adnan
Adnan

Reputation: 8729

You don't need any internet connection. Internet is needed for gems, but not for rails.Take a look

Upvotes: 2

Igbanam
Igbanam

Reputation: 6082

Yes and no.

Yes for...

  1. Installing and updating gems
  2. Deploying your app
  3. Communication with external services

No because rails runs on a server which handles all requests on a specified port (default is 3000) on localhost. Routing is handled internally too

Upvotes: 6

tbuehlmann
tbuehlmann

Reputation: 9110

No, there's no internet connection needed at all, you are able to develop locally after the installation is done.

Upvotes: 0

Related Questions