-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvenlu.gemspec
24 lines (21 loc) · 952 Bytes
/
convenlu.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'convenlu/version'
Gem::Specification.new do |spec|
spec.name = 'convenlu'
spec.version = Convenlu::VERSION
spec.authors = ['julio cabrera']
spec.email = ['[email protected]']
spec.summary = 'A ruby gem that helps to write conventional commits'
spec.description = 'Commit message will be formatted based on defined stantards'
spec.homepage = 'https://github.com/juliocabrera820/convenlu'
spec.metadata = { 'source_code_uri' => 'https://github.com/juliocabrera820/convenlu' }
spec.license = 'MIT'
spec.files = Dir.glob('{bin,lib}/**/*')
spec.bindir = 'bin'
spec.executables = ['convenlu']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.0.6'
spec.add_development_dependency 'bundler', '~> 2.2.33'
end