forked from jcnetdev/acts_as_state_machine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathacts_as_state_machine.gemspec
30 lines (24 loc) · 983 Bytes
/
acts_as_state_machine.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Gem::Specification.new do |s|
s.name = 'acts_as_state_machine'
s.version = '2.1.20080704'
s.date = '2008-07-04'
s.summary = "Allows ActiveRecord models to define states and transition actions between them"
s.description = "This act gives an Active Record model the ability to act as a finite state machine (FSM)."
s.authors = ['RailsJedi', 'Scott Barron']
s.email = '[email protected]'
s.homepage = 'http://github.com/jcnetdev/acts_as_state_machine'
s.has_rdoc = true
s.rdoc_options = ["--main", "README"]
s.extra_rdoc_files = ["README"]
s.add_dependency 'activerecord', ['>= 2.1']
s.files = ["CHANGELOG",
"MIT-LICENSE",
"README",
"Rakefile",
"TODO",
"acts_as_state_machine.gemspec",
"lib/acts_as_state_machine.rb"]
s.test_files = ["test/fixtures",
"test/fixtures/conversations.yml",
"test/test_acts_as_state_machine.rb"]
end