-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
dry-operation.gemspec
31 lines (26 loc) · 1.13 KB
/
dry-operation.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
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.prepend(lib) unless $LOAD_PATH.include?(lib)
require "dry/operation/version"
Gem::Specification.new do |spec|
spec.name = "dry-operation"
spec.version = Dry::Operation::VERSION
spec.authors = ["dry-rb team"]
spec.email = ["[email protected]"]
spec.homepage = "https://dry-rb.org/gems/dry-operation"
spec.summary = "A domain specific language for composable business transaction workflows."
spec.license = "MIT"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/dry-rb/dry-operation/issues",
"changelog_uri" => "https://github.com/dry-rb/dry-operation/blob/main/CHANGELOG.md",
"documentation_uri" => "https://dry-rb.org/gems/dry-operation",
"funding_uri" => "https://github.com/sponsors/hanami",
"label" => "dry-operation",
"source_code_uri" => "https://github.com/dry-rb/dry-operation"
}
spec.required_ruby_version = ">= 3.1.0"
spec.add_dependency "zeitwerk", "~> 2.6"
spec.add_dependency "dry-monads", "~> 1.6"
spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
spec.files = Dir["*.gemspec", "lib/**/*"]
end