convox_installer.gemspec in convox_installer-1.0.9 vs convox_installer.gemspec in convox_installer-2.0.0

- old
+ new

@@ -1,28 +1,29 @@ # frozen_string_literal: true -$LOAD_PATH.push File.expand_path("lib", __dir__) -require "convox_installer/version" +$LOAD_PATH.push File.expand_path('lib', __dir__) +require 'convox_installer/version' Gem::Specification.new do |s| - s.name = "convox_installer" + s.name = 'convox_installer' s.version = ConvoxInstaller::VERSION s.platform = Gem::Platform::RUBY - s.authors = ["Form Applications Inc."] - s.email = ["support@formapi.io"] - s.homepage = "https://github.com/FormAPI/convox_installer" - s.summary = "Build a Convox installation workflow" - s.description = "Build a Convox installation workflow" - s.license = "MIT" - s.required_ruby_version = ">= 2.3" + s.authors = ['Form Applications Inc.'] + s.email = ['support@formapi.io'] + s.homepage = 'https://github.com/FormAPI/convox_installer' + s.summary = 'Build a Convox installation workflow' + s.description = 'Build a Convox installation workflow' + s.license = 'MIT' + s.required_ruby_version = '>= 2.5' - s.add_runtime_dependency "highline", ">= 1.7.10" - s.add_runtime_dependency "json", ">= 2.2.0" - s.add_runtime_dependency "os", ">= 1.0.1" - s.add_runtime_dependency "httparty", ">= 0.17.0" - s.add_runtime_dependency "activesupport", ">= 5.2.3" + s.add_runtime_dependency 'activesupport', '>= 5.2.3' + s.add_runtime_dependency 'highline', '>= 1.7.10' + s.add_runtime_dependency 'httparty', '>= 0.17.0' + s.add_runtime_dependency 'json', '>= 2.2.0' + s.add_runtime_dependency 'os', '>= 1.0.1' - s.files = `git ls-files`.split("\n").uniq.sort.reject(&:empty?) - ["Gemfile.lock"] + s.files = `git ls-files`.split("\n").uniq.sort.reject(&:empty?) - ['Gemfile.lock'] s.test_files = `git ls-files spec test`.split("\n") s.executables = [] - s.require_paths = ["lib"] + s.require_paths = ['lib'] + s.metadata['rubygems_mfa_required'] = 'true' end