forked from piotrmurach/finite_machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinite_machine.gemspec
33 lines (27 loc) · 1.46 KB
/
finite_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
32
33
# frozen_string_literal: true
require_relative "lib/finite_machine/version"
Gem::Specification.new do |spec|
spec.name = "finite_machine"
spec.version = FiniteMachine::VERSION
spec.authors = ["Piotr Murach"]
spec.email = ["[email protected]"]
spec.description = %q{A minimal finite state machine with a straightforward syntax. You can quickly model states, add callbacks and use object-oriented techniques to integrate with ORMs.}
spec.summary = %q{A minimal finite state machine with a straightforward syntax.}
spec.homepage = "https://piotrmurach.github.io/finite_machine/"
spec.license = "MIT"
if spec.respond_to?(:metadata)
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["changelog_uri"] = "https://github.com/piotrmurach/finite_machine/blob/master/CHANGELOG.md"
spec.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/finite_machine"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/piotrmurach/finite_machine"
end
spec.files = Dir["lib/**/*"]
spec.extra_rdoc_files = ["README.md", "CHANGELOG.md", "LICENSE.txt"]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.0.0"
spec.add_runtime_dependency "concurrent-ruby", "~> 1.0"
spec.add_runtime_dependency "sync", "~> 0.5"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", ">= 3.0"
end