public
Fork of rubyist/aasm
Description: AASM - State machines for Ruby classes
Homepage: http://rubyi.st/aasm/
Clone URL: git://github.com/zilkey/aasm.git
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
rubyist (author)
Tue Apr 29 17:51:12 -0700 2008
commit  9e240e70cb48680de099753c1a6786845abf3075
tree    6e4dc440e5d3844b869b5a9ec8761c3a0713aea0
parent  ed1d03fec648a0f4ac833871e89081414bb2a557
...
23
24
25
26
 
 
 
 
 
 
27
28
29
 
30
31
32
...
23
24
25
 
26
27
28
29
30
31
32
33
 
34
35
36
37
0
@@ -23,10 +23,15 @@ A release and a gem are forthcoming.
0
 
0
 == Installation
0
 
0
-Until the gem release is made your best bet is to build the gem yourself and install it.
0
+=== From GitHub hosted gems
0
+
0
+ % sudo gem sources -a http://gems.github.com # (you only need to do this once)
0
+ % sudo gem install rubyist-aasm
0
+
0
+=== Building your own gems
0
 
0
   % rake gem
0
- % sudo gem install pkg/aasm-3.0.0.gem
0
+ % sudo gem install pkg/aasm-0.0.2.gem
0
 
0
 
0
 == Simple Example
...
1
2
3
 
4
5
...
1
2
 
3
4
5
0
@@ -1,5 +1,5 @@
0
 module AASM
0
   module VERSION
0
- STRING = '3.0.0'
0
+ STRING = '0.0.2'
0
   end
0
 end

Comments

    No one has commented yet.