From b95956a9b9f0c6c5127dd27c4099af62307c2311 Mon Sep 17 00:00:00 2001 From: Tim Rudat Date: Thu, 24 Aug 2017 21:25:33 +0200 Subject: [PATCH] Fix ruby version requirements in gemspec file Fixes #209. --- ruby-jwt.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby-jwt.gemspec b/ruby-jwt.gemspec index efcc4b76..b419fa30 100644 --- a/ruby-jwt.gemspec +++ b/ruby-jwt.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |spec| spec.description = 'A pure ruby implementation of the RFC 7519 OAuth JSON Web Token (JWT) standard.' spec.homepage = 'http://github.com/jwt/ruby-jwt' spec.license = 'MIT' - spec.required_ruby_version = '~> 2.1' + spec.required_ruby_version = '>= 2.1' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }