hotch.gemspec in hotch-0.6.0 vs hotch.gemspec in hotch-0.7.0

- old
+ new

@@ -1,26 +1,34 @@ -# coding: utf-8 -lib = File.expand_path('../lib', __FILE__) +# frozen_string_literal: true + +# frozen_string_literals: true + +lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) -require 'hotch/version' +require "hotch/version" Gem::Specification.new do |spec| spec.name = "hotch" spec.version = Hotch::VERSION spec.authors = ["Peter Leitzen"] spec.email = ["peter@leitzen.de"] - spec.summary = %q{Profile helper} - spec.description = %q{Callstack and memory profiler} + spec.summary = "Profile helper" + spec.description = "Callstack and memory profiler" spec.homepage = "https://github.com/splattael/hotch" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } - spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] - spec.add_runtime_dependency "stackprof", "~> 0.2.15" + spec.required_ruby_version = ">= 2.7.0" + spec.add_runtime_dependency "allocation_tracer", "~> 0.6.3" + spec.add_runtime_dependency "stackprof", "~> 0.2.15" spec.add_development_dependency "bundler" - spec.add_development_dependency "rake", "~> 10.0" + spec.add_development_dependency "rake", ">= 12.3.3" + spec.add_development_dependency "rubocop" + spec.add_development_dependency "rubocop-minitest" + spec.add_development_dependency "rubocop-rake" + spec.metadata["rubygems_mfa_required"] = "true" end