-
Notifications
You must be signed in to change notification settings - Fork 25
/
trailblazer-operation.gemspec
30 lines (25 loc) · 1.25 KB
/
trailblazer-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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'trailblazer/operation/version'
Gem::Specification.new do |spec|
spec.name = "trailblazer-operation"
spec.version = Trailblazer::Version::Operation::VERSION
spec.authors = ["Nick Sutterer"]
spec.email = ["apotonick@gmail.com"]
spec.description = %q(Trailblazer's operation object.)
spec.summary = %q(Trailblazer's operation object with railway flow and integrated error handling.)
spec.homepage = "https://trailblazer.to/2.1/docs/operation.html"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test)/})
spec.require_paths = ["lib"]
spec.add_dependency "trailblazer-activity-dsl-linear", ">= 1.2.3", "< 1.4.0"
spec.add_dependency "trailblazer-developer", ">= 0.1.0", "< 0.2.0"
spec.add_development_dependency "bundler"
spec.add_development_dependency "minitest"
spec.add_development_dependency "minitest-line"
spec.add_development_dependency "rake"
spec.add_development_dependency "trailblazer-core-utils"
spec.required_ruby_version = ">= 2.5.0"
end