Gempackage
Gempackages describe distributed gems on the cloud. The gem is only downloaded once and then hosted on the master if a download url is given.
Usage
1 has_gempackage(:name => '...') do
2
3
4 end
Options
nameThe gem name
download_urlThe location of the gem to download and server across the instances
versionThe gem version requirement (optional and useless if download_url is given)
sourceThe gem source (optional and useless matter if download_url is given)
Examples
1 has_gempackage(:name => 'rake',
2 :download_url => 'http://rubyforge.org/frs/download.php/43954/rake-0.8.3.gem')