-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmp-utils.gemspec
29 lines (23 loc) · 984 Bytes
/
mp-utils.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
# frozen_string_literal: true
require_relative 'lib/version'
Gem::Specification.new do |spec|
spec.name = 'mp-utils'
spec.version = MPUtils::VERSION
spec.authors = ['Marcio F Paludo']
spec.email = ['[email protected]']
spec.homepage = 'https://github.com/MarcioFPaludo/ruby-mp-utils'
spec.required_ruby_version = '>= 2.6.10'
spec.license = 'MIT'
spec.summary = 'The MP-Utils library aims to facilitate the writing of daily scripts'
spec.description = <<~DESC
Helpers to facilitate scripts Writing.
It can centralize messages in files and also add facilitators for the recovery and manipulation of some contents.
DESC
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['rubygems_mfa_required'] = 'true'
spec.require_paths = ['lib']
spec.files = Dir[File.join('lib', '**', '*')].select do |path|
!Dir.exist?(path) && !['version.rb'].include?(File.basename(path))
end
end