-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalias_callable.gemspec
More file actions
26 lines (20 loc) · 974 Bytes
/
alias_callable.gemspec
File metadata and controls
26 lines (20 loc) · 974 Bytes
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
# frozen_string_literal: true
require_relative "lib/alias_callable/version"
Gem::Specification.new do |spec|
spec.name = "alias_callable"
spec.version = AliasCallable::VERSION
spec.authors = ["Vladimir Gorodulin"]
spec.email = ["ru.hostmaster@gmail.com"]
spec.description = "Bring callable classes to your code as methods."
spec.summary = "Call Service Objects with ease. Include them to your classes as methods!"
spec.homepage = "https://github.com/gorodulin/alias_callable"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 3.0")
spec.metadata = {
"changelog_uri" => "https://github.com/gorodulin/alias_callable/blob/main/CHANGELOG.md",
"homepage_uri" => spec.homepage,
"source_code_uri" => "https://github.com/gorodulin/alias_callable/tree/main",
}
spec.files = Dir["lib/**/*.{rb,erb}"] + %w[LICENSE README.md CHANGELOG.md]
spec.require_paths = ["lib"]
end