I want to install compass by downloading any required file and taking them to another machine without internet connection. I have downloaded the source package for compass and when I run gem on it in the non connected machine it complains about missing dependencies. Any solution?
That's precisely the problem I had.
After searching around for a while I found a solution that works using Bundler https://bundler.io/
Getting Gem with Dependencies:
Gemfile
.source "http://rubygems.org"
gem 'rails', '3.2.1'
bundle install
bundle list
if you wanna see itbundle package
vendor/cache
Install Gem on Machine without internet connection:
gem install --local rails-3.2.1.gem