-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoperational.gemspec
More file actions
32 lines (26 loc) · 1.45 KB
/
operational.gemspec
File metadata and controls
32 lines (26 loc) · 1.45 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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'operational/version'
Gem::Specification.new do |spec|
spec.name = "operational"
spec.version = Operational::VERSION
spec.authors = ["Bryan Rite"]
spec.email = ["bryan@bryanrite.com"]
spec.summary = %q{Lightweight, railway-oriented operation and form objects for business logic}
spec.description = %q{Operational wraps your business logic into operations — small classes with a railway of steps that succeed or fail. Pair them with form objects and contracts to decouple your UI and APIs from your models.}
spec.homepage = "https://github.com/bryanrite/operational"
spec.license = "MIT"
spec.metadata = {
"changelog_uri" => "https://github.com/bryanrite/operational/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/bryanrite/operational",
"documentation_uri" => "https://github.com/bryanrite/operational#readme",
"bug_tracker_uri" => "https://github.com/bryanrite/operational/issues"
}
spec.files = Dir["lib/**/*", "LICENSE", "README.md", "AI_README.md", "CHANGELOG.md"]
spec.require_paths = ["lib"]
spec.required_ruby_version = Gem::Requirement.new(">= 3.0")
spec.add_dependency("activemodel", ">= 7.0.0")
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
end