forked from thedarkone/acts_as_state_machine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
acts_as_state_machine.gemspec
31 lines (25 loc) · 1.01 KB
/
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
31
Gem::Specification.new do |s|
s.name = 'tastebook-acts_as_state_machine'
s.version = '3.0.3'
s.date = '2013-07-30'
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', 'Surendra Singhi']
s.email = '[email protected]'
s.homepage = 'http://github.com/tastebook/acts_as_state_machine'
s.has_rdoc = true
s.rdoc_options = ["--main", "README"]
s.extra_rdoc_files = ["README"]
s.add_dependency 'activerecord', ['>= 3.1']
s.require_paths = ["lib"]
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