how_is.gemspec in how_is-25.0.0 vs how_is.gemspec in how_is-26.0.0

- old
+ new

@@ -1,44 +1,26 @@ -# coding: utf-8 +INQ_VERSION = File.read("INQ_VERSION") -lib = File.expand_path('../lib', __FILE__) -$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) -require 'how_is/version' - Gem::Specification.new do |spec| spec.name = "how_is" - spec.version = HowIs::VERSION + spec.version = INQ_VERSION spec.authors = ["Ellen Marie Dash"] spec.email = ["me@duckie.co"] - spec.summary = %q{Quantify the health of a GitHub repository.} - spec.homepage = "https://github.com/how-is/how_is" + spec.summary = %q{HowIs has been renamed to Inq. Use that instead!} + spec.homepage = "https://github.com/duckinator/inq" spec.license = "MIT" - spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } + # 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"] - # how_is only supports Ruby versions under "normal maintenance". - # This number should be updated when a Ruby version goes into security - # maintenance. - # - # Ruby maintenance info: https://www.ruby-lang.org/en/downloads/branches/ - # - # NOTE: Update Gemfile when this is updated! - spec.required_ruby_version = "~> 2.4" + spec.add_dependency "inq", INQ_VERSION - spec.add_runtime_dependency "github_api", "~> 0.18.1" - spec.add_runtime_dependency "okay", "~> 11.0" - - spec.add_runtime_dependency "json" - spec.add_development_dependency "bundler", "~> 2.0" - spec.add_development_dependency "rake", "~> 12.3" - spec.add_development_dependency "rspec", "~> 3.8" - spec.add_development_dependency "timecop", "~> 0.9.1" - spec.add_development_dependency "vcr", "~> 4.0" - spec.add_development_dependency "webmock" - spec.add_development_dependency "rubocop", "~> 0.49.1" - spec.add_development_dependency "github_changelog_generator" + spec.add_development_dependency "rake", "~> 10.0" end