1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/logger] Say that logger requires ruby >= 2.3

Since it uses `&.`, it can't be used on older rubies
https://github.com/ruby/logger/commit/b872f90ab9
This commit is contained in:
Samuel Giddins 2019-01-17 09:59:55 -08:00 committed by Hiroshi SHIBATA
parent b9ba07a05c
commit 227eae79ac
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -20,6 +20,8 @@ Gem::Specification.new do |spec|
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.3.0
spec.add_development_dependency "bundler", ">= 0"
spec.add_development_dependency "rake", "~> 10.0"