forked from geekq/workflow
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvalidating-workflow.gemspec
More file actions
37 lines (32 loc) · 2.02 KB
/
Copy pathvalidating-workflow.gemspec
File metadata and controls
37 lines (32 loc) · 2.02 KB
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
32
33
34
35
36
37
# encoding: utf-8
require "date"
Gem::Specification.new do |s|
s.name = %q{validating-workflow}
s.version = '0.7.12'
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ['Vladimir Dobriakov', 'Willem van Kerkhof']
s.date = Date.today.to_s
s.description = %q{Validating-Workflow is a finite-state-machine-inspired API for modeling and interacting
with what we tend to refer to as 'workflow'.
* nice DSL to describe your states, events and transitions
* robust integration with ActiveRecord and non relational data stores
* various hooks for single transitions, entering state etc.
* convenient access to the workflow specification: list states, possible events
for particular state
* state and transition dependent validations for ActiveModel
}
s.email = %q{vladimir@geekq.net, wvk@consolving.de}
s.extra_rdoc_files = %w(README.markdown)
s.files = [".gitignore", "MIT-LICENSE", "README.markdown", "Rakefile", "VERSION", "lib/workflow.rb", "test/couchtiny_example.rb", "test/main_test.rb", "test/multiple_workflows_test.rb", "test/readme_example.rb", "test/test_helper.rb", "test/without_active_record_test.rb", "workflow.rb", "lib/validating-workflow.rb", "lib/workflow/state_dependent_validations.rb", "lib/workflow/active_model_persistence.rb", "lib/workflow/mongoid_persistence.rb", "lib/workflow/remodel_persistence.rb", "lib/workflow/transactional.rb"]
s.homepage = %q{http://www.geekq.net/workflow/}
s.rdoc_options = %w(--charset=UTF-8)
s.require_paths = %w(lib)
s.rubygems_version = %q{2.5.2}
s.summary = %q{A replacement for acts_as_state_machine, an enhancement of workflow.}
s.test_files = %w(test/couchtiny_example.rb test/main_test.rb test/test_helper.rb test/without_active_record_test.rb test/multiple_workflows_test.rb test/readme_example.rb)
s.license = 'MIT'
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
end
end