recode.gemspec
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'recode/version'
Gem::Specification.new do |s|
s.name = 'recode'
s.version = Recode::VERSION
s.summary = 'Command line utility for refactoring code'
s.description = 'Command line utility for refactoring code'
s.authors = ['Danny Ben Shitrit']
s.email = 'db@dannyben.com'
s.files = Dir['README.md', 'lib/**/*.*']
s.executables = ['recode']
s.homepage = 'https://github.com/dannyben/recode'
s.license = 'MIT'
s.required_ruby_version = '>= 3.0'
s.add_runtime_dependency 'colsole', '>= 0.8.1', '< 2'
s.add_runtime_dependency 'diffy', '~> 3.3'
s.add_runtime_dependency 'mister_bin', '~> 0.7'
s.add_runtime_dependency 'strings-inflection', '~> 0.1'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/DannyBen/recode/issues',
'changelog_uri' => 'https://github.com/DannyBen/recode/blob/master/CHANGELOG.md',
'source_code_uri' => 'https://github.com/DannyBen/recode',
'rubygems_mfa_required' => 'true',
}
end