-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinteractify.gemspec
More file actions
56 lines (46 loc) · 1.87 KB
/
interactify.gemspec
File metadata and controls
56 lines (46 loc) · 1.87 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# frozen_string_literal: true
require_relative "lib/interactify/version"
Gem::Specification.new do |spec|
spec.name = "interactify"
spec.version = Interactify::VERSION
spec.authors = ["Mark Burns"]
spec.email = ["[email protected]"]
spec.summary = "Interactors with bells and whistles"
spec.description = <<~SPEC
Adds the following to your interactor chains
- lambda support
- iteration
- conditionals
- verify expectations in chains. never again expect something not previously expected or promised
- autogenerated async sidekiq job classes. Just append `::Async` to your interactor class name to add a job to sidekiq
- everything can be an organizer or an interactor
SPEC
spec.homepage = "https://github.com/markburns/interactify"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.4"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/markburns/interactify"
spec.metadata["changelog_uri"] = "https://github.com/markburns/interactify/blob/main/CHANGELOG.md"
spec.files = [
"lib/**/*.rb",
"LICENSE.txt",
"README.md",
"CHANGELOG.md"
].map { |glob| Dir[glob] }.flatten.reject do |f|
File.directory?(f) ||
f.end_with?("_spec.rb") ||
f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile]) ||
File.expand_path(f) == __FILE__
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "activesupport", ">= 6.0.0"
spec.add_dependency "base64"
spec.add_dependency "bigdecimal"
spec.add_dependency "interactor"
spec.add_dependency "interactor-contracts"
spec.add_dependency "mutex_m"
spec.metadata["rubygems_mfa_required"] = "true"
end