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

RHash 0.0.6 Released

Fix: Two bugs solved.
New: Method to_yaml used for create file .yaml

Friday 16 July 2010

Wednesday 14 July 2010

RHash 0.0.3 Released

Portuguese:
- Alguns bugs simples foram corrigidos
- Documentação dos métodos.

TODO:
- Implementar Unit Test
- Implementar Teste de Desempenho
- Organizar o código

English:
- Fix: Minor bugs.
- Documentation.

TODO:
- Develop: Unit Test
- Develop: Performance Test
- Organization

Download(via http): http://rubygems.org/gems/rhash
Download(via rubygems): (sudo) gem install rhash

Tuesday 13 July 2010

RHash 0.0.1: Released

TODO:
- Create: RDOC
- Create: Unit Tests

------
OFF:
Don't have any bugs... [ As far as I know. :) ]