Fix README to reflect github gem installation

Fix README instructions for building your own gem
Fix VERSION - not sure why it was set to 3.0.0
This commit is contained in:
Scott Barron 2008-04-29 20:51:12 -04:00
parent ed1d03fec6
commit 9e240e70cb
2 changed files with 8 additions and 3 deletions

View File

@ -23,10 +23,15 @@ A release and a gem are forthcoming.
== Installation
Until the gem release is made your best bet is to build the gem yourself and install it.
=== From GitHub hosted gems
% sudo gem sources -a http://gems.github.com # (you only need to do this once)
% sudo gem install rubyist-aasm
=== Building your own gems
% rake gem
% sudo gem install pkg/aasm-3.0.0.gem
% sudo gem install pkg/aasm-0.0.2.gem
== Simple Example

View File

@ -1,5 +1,5 @@
module AASM
module VERSION
STRING = '3.0.0'
STRING = '0.0.2'
end
end