-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheffects.gemspec
More file actions
29 lines (23 loc) · 1.05 KB
/
effects.gemspec
File metadata and controls
29 lines (23 loc) · 1.05 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
# frozen_string_literal: true
require_relative "lib/effects/version"
Gem::Specification.new do |spec|
spec.name = "effects"
spec.version = Effects::VERSION
spec.authors = ["Effects Contributors"]
spec.email = ["effects@example.com"]
spec.summary = "Algebraic effects for Ruby"
spec.description = "Separate what happens from how it happens. " \
"Declare effect interfaces, write handlers, and run with full " \
"error propagation, nested scoping, composition, and parallel execution."
spec.homepage = "https://github.com/effects-rb/effects"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir.chdir(__dir__) do
Dir["{lib}/**/*", "LICENSE.txt", "README.md", "CHANGELOG.md"].reject { |f| File.directory?(f) }
end
spec.require_paths = ["lib"]
end