Monday 19 July 2010

Freeze Gems 0.0.2 Released

Freeze Gems foi desenvolvido com o intuito de auxiliar a instalação de gems entre computadores diferentes.
O computador com as gems que se deseja replicar nas outras máquinas, gera um arquivo .yaml, listando todas as gems que vão ser instaladas.
Já no computador que se deseja instalar as gems é necessário somente fazer a leitura do arquivo.

Freeze Gems was developed with the intention of assisting the installation of gems among different computers.
The computer with the gems that want to replicate on other machines, generates a yaml file, listing all the gems that will be installed.
In the computer you want to install the gems, you only need to read the yaml file.


Exemplo/Example:
Computer A
gem list
computer_a@desktop:$ gem list
a (0.0.1)
b (0.1.0)
c (0.1.1)
computer_a@desktop:$ freeze -c mygems
Cria no diretória atual um arquivo com nome mygems.yaml listando todas as gems.
It creates in the current path a file named mygems.yaml listing all gems.

Computer B
computer_a@desktop:$ gem list

computer_a@desktop:$ freeze -f mygems.yaml --install

No comments:

Post a Comment