Skip to content

Commit

Permalink
Merge pull request #218 from excpt/issue-209
Browse files Browse the repository at this point in the history
Fix ruby version requirements in gemspec file
  • Loading branch information
excpt authored Sep 2, 2017
2 parents 59ff654 + b95956a commit 62295f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ruby-jwt.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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) }
Expand Down

0 comments on commit 62295f3

Please sign in to comment.