Reputation: 12759
I am going to be away from the internet for a few weeks and would still like to get a project done. What steps should I take to make sure I have access to the things I need (ruby and ROR) while I will be disconnected?
Upvotes: 3
Views: 629
Reputation: 51941
when offline, the following are hard to get:
so,
and most importantly:
Upvotes: 7
Reputation: 7715
Get your app (in its current state) up and running on your laptop. Then shut off wireless and make sure it still goes. Don't just guess at what gems and things you'll need - make sure you see it actually run. Don't forget things like database engines and queuing servers. Then start guessing about other gems and items you might need.
Make sure that
gem server
will start up a webserver and let you browse the docs for all your installed gems.
Upvotes: 1
Reputation: 1883
This may not affect you, but it's bitten me before.
If you are using a javascript library such as jQuery, and are linking to Google's Hosted Libraries rather than a local one, you may find jQuery stops working when you are offline.
Download and link to a local copy before you go.
Upvotes: 1
Reputation: 1316
Download every Ruby gem. All of them!
You never know when you'll need to extract EXIF data, or something.
Upvotes: 0
Reputation: 2190
If you use version control, make sure you can work offline. DVCS do this well, I've heard SVN can work offline if you have a local SVN server.
Running the Rails app on localhost will allow you to access it with your browser locally.
Apart from this it would also be nice to have documentation offline too. Download everything you can think of: Rails, Ruby, Shell, libs etc. Or use books.
Upvotes: 2
Reputation: 115372
Upvotes: 1