public
Rubygem
Description: AASM - State machines for Ruby classes
Homepage: http://rubyi.st/aasm
Clone URL: git://github.com/rubyist/aasm.git
Click here to lend your support to: aasm and make a donation at www.pledgie.com !
rubyist (author)
Tue Apr 29 15:33:54 -0700 2008
commit  ed1d03fec648a0f4ac833871e89081414bb2a557
tree    49462060b9620ff20e1e9a4bbc8d2051f6249d33
parent  0f950a67084e2f4a861e29c67d39d064e89ebb8f
aasm / aasm.gemspec
100644 20 lines (17 sloc) 0.862 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
PKG_FILES = ["CHANGELOG", "MIT-LICENSE", "Rakefile", "README.rdoc", "TODO", "lib/aasm.rb", "lib/event.rb", "lib/persistence/active_record_persistence.rb", "lib/persistence.rb", "lib/state.rb", "lib/state_transition.rb", "lib/version.rb", "doc/jamis.rb"]
 
Gem::Specification.new do |s|
  s.name = 'aasm'
  s.version = "0.0.2"
  s.summary = 'State machine mixin for Ruby objects'
  s.description = <<-EOF
AASM is a continuation of the acts as state machine rails plugin, built for plain Ruby objects.
EOF
  s.files = PKG_FILES
  s.require_path = 'lib'
  s.has_rdoc = true
  s.extra_rdoc_files = ['README.rdoc', 'MIT-LICENSE', 'TODO', 'CHANGELOG']
  s.rdoc_options = ['--line-numbers', '--inline-source', '--main', 'README.rdoc', '--title', 'AASM']
  
  s.author = 'Scott Barron'
  s.email = 'scott@elitists.net'
  s.homepage = 'http://github.com/rubyist/aasm'
end