From 2e3e592af67ae003eb40f79287f0a19d7ef2aae3 Mon Sep 17 00:00:00 2001 From: Lars Kanis Date: Mon, 17 Jan 2022 16:10:57 +0100 Subject: [PATCH] Require ruby-2.4+ in gemspec Since we don't test older rubies. --- pg-ldap-sync.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/pg-ldap-sync.gemspec b/pg-ldap-sync.gemspec index e2294a8..7072230 100644 --- a/pg-ldap-sync.gemspec +++ b/pg-ldap-sync.gemspec @@ -19,6 +19,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.rdoc_options = %w[--main README.md --charset=UTF-8] + spec.required_ruby_version = ">= 2.4" spec.add_runtime_dependency "net-ldap", "~> 0.16" spec.add_runtime_dependency "kwalify", "~> 0.7"