-
Notifications
You must be signed in to change notification settings - Fork 6
/
adornable.gemspec
28 lines (24 loc) · 1.58 KB
/
adornable.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
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "adornable/version"
Gem::Specification.new do |spec|
spec.name = "adornable"
spec.version = Adornable::VERSION
spec.authors = ["Keegan Leitz"]
spec.email = ["[email protected]"]
spec.summary = "Method decorators for Ruby"
spec.description = "Adornable provides the ability to cleanly decorate methods in Ruby. You can make and use your own decorators, and you can also use some of the built-in ones that the gem provides. _Decorating_ methods is as simple as slapping a `decorate :some_decorator` above your method definition. _Defining_ decorators can be as simple as defining a method that yields to a block, or as complex as manipulating the decorated method's receiver and arguments, and/or changing the functionality of the decorator based on custom options supplied to it when initially applying the decorator." # rubocop:disable Layout/LineLength
spec.homepage = "https://github.com/kjleitz/adornable"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.5.0"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.metadata['rubygems_mfa_required'] = 'true'
end