-
Notifications
You must be signed in to change notification settings - Fork 0
/
hook-gem.gemspec
32 lines (25 loc) · 1.29 KB
/
hook-gem.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
31
32
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "captain_hook"
spec.version = "1.0.0"
spec.authors = ["Genar Trias Ortiz"]
spec.email = ["gtrias@gmail.com"]
spec.summary = "A gem to create decorator hooks approach for any ruby class, it supports before, after and around hooks"
spec.description = "A gem to create decorator hooks approach for any ruby class"
spec.homepage = "https://github.com/factorialco/captain_hook"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/factorialco/captain_hook"
spec.metadata["changelog_uri"] = "https://github.com/factorialco/captain_hook"
# Specify which files should be added to the gem when it is released.
spec.files = ["lib/captain_hook.rb"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
# Uncomment to register a new dependency of your gem
# spec.add_dependency "example-gem", "~> 1.0"
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
end