= localized_gems

* https://cyberconnect.biz/opensource/qa_robusta.html

== DESCRIPTION:

Cross platform utility for installing gems on a per project basis

== FEATURES/PROBLEMS:

* There are great tools out there such as RVM or PIK. Each of these are
intended for a specific platform. When one just needs a cross platform means
to install gems to a given project, such that the system gem path isn't
interfeared with localized_gems can help.

== SYNOPSIS:

in your project's rake file:
require 'localized_gems'

Then define a task such as:

namespace :install do
desc "install gems to project"
task :gems do
reqs = [ 'some gem 1', 'some gem 2 -v 0.1.10' ]
reqs.each { |gem| GemHelpers.install(gem, "#base_dir/gems/installed") }
end
end


== INSTALL:

* gem install localized_gems

== LICENSE:
GPLv3: http://www.gnu.org/licenses/gpl.html

Copyright (c) 2011 Cliff Cyphers