public
Rubygem
Description: AASM - State machines for Ruby classes
Homepage: http://rubyi.st/aasm
Clone URL: git://github.com/rubyist/aasm.git
Search Repo:
Click here to lend your support to: aasm and make a donation at www.pledgie.com !
Adding a gemspec - trying out github's gem hosting
rubyist (author)
Tue Apr 29 15:13:38 -0700 2008
commit  ee2c18daf0512eb50fd767825d41f4a2e07ce868
tree    b4041f65ba99b47ccde1cb80c5bbb5df76aff43a
parent  482e8d970db1cd4f9babbc09818fd04b634c57f3
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
0
@@ -1 +1,25 @@
0
+require 'rake'
0
+
0
+PKG_FILES = FileList['[A-Z]*',
0
+'lib/**/*.rb',
0
+'doc/**/*'
0
+]
0
+
0
+Gem::Specification.new do |s|
0
+ s.name = 'aasm'
0
+ s.version = "0.0.1"
0
+ s.summary = 'State machine mixin for Ruby objects'
0
+ s.description = <<-EOF
0
+AASM is a continuation of the acts as state machine rails plugin, built for plain Ruby objects.
0
+EOF
0
+ s.files = PKG_FILES.to_a
0
+ s.require_path = 'lib'
0
+ s.has_rdoc = true
0
+ s.extra_rdoc_files = ['README.rdoc', 'MIT-LICENSE', 'TODO', 'CHANGELOG']
0
+ s.rdoc_options = '--line-numbers' << '--inline-source' << '--main' << 'README.rdoc' << '--title' << 'AASM'
0
+
0
+ s.author = 'Scott Barron'
0
+ s.email = 'scott@elitists.net'
0
+ s.homepage = 'http://rubyi.st/aasm'
0
+end

Comments

    No one has commented yet.