diff options
author | Chris Schlaeger <chris@linux.com> | 2019-07-09 20:43:29 +0200 |
---|---|---|
committer | Chris Schlaeger <chris@linux.com> | 2019-07-09 20:43:29 +0200 |
commit | b01b8b0c8cb440ba01b58d9980470621717638cd (patch) | |
tree | 028eab1c899852276cd611883945179999adf509 | |
parent | b52493afe8d9136c9dbbca1e3eab6de392420c8a (diff) | |
download | postrunner-b01b8b0c8cb440ba01b58d9980470621717638cd.zip |
New: Make Ruby 2.4 the minimum required version.
The handling of Integer changed between 2.3 and 2.4 and we cannot
support both. So 2.4 is now the required minimum version.
-rw-r--r-- | postrunner.gemspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postrunner.gemspec b/postrunner.gemspec index 425ce26..08cd48b 100644 --- a/postrunner.gemspec +++ b/postrunner.gemspec @@ -26,7 +26,7 @@ operating systems as well.} spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] - spec.required_ruby_version = '>=2.0' + spec.required_ruby_version = '>=2.4' spec.add_dependency 'fit4ruby', '~> 3.2.0' spec.add_dependency 'perobs', '~> 4.1.0' |