public
Description: The gem verison of my lightweight tool to manage gems using a config file, similar to GemInstaller.
Homepage:
Clone URL: git://github.com/UnderpantsGnome/gem_tools-gem.git
name age message
file .gitignore Mon Aug 04 06:52:12 -0700 2008 Add git ignore, duh [UnderpantsGnome]
file History.txt Mon May 18 15:17:01 -0700 2009 add error redirection when checking for rdoc an... [UnderpantsGnome]
file License.txt Mon Aug 04 06:35:17 -0700 2008 Fix git ignore. Update the README [UnderpantsGnome]
file Manifest.txt Fri Sep 26 17:36:26 -0700 2008 Fix the setup routine, Add the missing gems.tem... [UnderpantsGnome]
file PostInstall.txt Mon Aug 04 06:31:12 -0700 2008 Initial commit [UnderpantsGnome]
file README.textile Sat May 16 14:14:12 -0700 2009 fix typo in readme [UnderpantsGnome]
file README.txt Mon May 18 15:17:01 -0700 2009 add error redirection when checking for rdoc an... [UnderpantsGnome]
file Rakefile Mon Aug 04 06:31:12 -0700 2008 Initial commit [UnderpantsGnome]
directory bin/ Mon May 18 15:17:01 -0700 2009 add error redirection when checking for rdoc an... [UnderpantsGnome]
directory config/ Wed Sep 03 18:42:11 -0700 2008 add the setup command [UnderpantsGnome]
file gem_tools.gemspec Tue Feb 10 15:19:08 -0800 2009 Fix the a bug in the loaded detection logic [UnderpantsGnome]
directory lib/ Mon May 18 15:17:01 -0700 2009 add error redirection when checking for rdoc an... [UnderpantsGnome]
directory script/ Mon Aug 04 06:31:12 -0700 2008 Initial commit [UnderpantsGnome]
file setup.rb Mon Aug 04 06:31:12 -0700 2008 Initial commit [UnderpantsGnome]
directory spec/ Mon Aug 04 06:31:12 -0700 2008 Initial commit [UnderpantsGnome]
directory tasks/ Mon Aug 04 06:31:12 -0700 2008 Initial commit [UnderpantsGnome]
directory website/ Wed Aug 06 11:08:59 -0700 2008 Publish versin 0.0.1 [UnderpantsGnome]
README.textile

GemTools

DESCRIPTION:

The gem verison of my lightweight tool to manage gems using a config file,
similar to GemInstaller.

My blog post on why I prefer GemTools over config:gem

FEATURES/PROBLEMS:

Doesn’t yet work in Windows

SYNOPSIS:

I use this to manage gem versions in my apps, it has a script to install gems
and a load utility to load them on startup.

create a gems.yml in a new project

gemtools setup path/to/app

Install or update required gems

gemtools install

Check to see if any of the gems in your app have newer versions

gemtools check_updates

Make sure they are loaded with the right versions during startup, by adding the
following to your script or environment.rb (Rails)

require ‘gem_tools’ GemTools.load_gems

See the sample config for the format

INSTALL:

sudo gem install gem_tools

TODO

  • Write the tests/specs
  • Make it work in Windows

LICENSE:

(The MIT License)

Copyright © 2008 Michael Moen

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
‘Software’), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.