Skip to content

Commit

Permalink
require ruby 2.4+
Browse files Browse the repository at this point in the history
  • Loading branch information
zarqman committed May 31, 2019
1 parent d7c733e commit a182ff9
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 32 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* Support SNI and enable cert name verification.
* Require Ruby 2.4


#### 1.2.1

* Support Fluentd 1.0 (same API as 0.14).
Expand Down
58 changes: 29 additions & 29 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ PATH
GEM
remote: https://rubygems.org/
specs:
addressable (2.5.2)
addressable (2.6.0)
public_suffix (>= 2.0.2, < 4.0)
cool.io (1.5.3)
coveralls (0.8.21)
cool.io (1.5.4)
coveralls (0.8.23)
json (>= 1.8, < 3)
simplecov (~> 0.14.1)
simplecov (~> 0.16.1)
term-ansicolor (~> 1.3)
thor (~> 0.19.4)
thor (>= 0.19.4, < 2.0)
tins (~> 1.6)
crack (0.4.3)
safe_yaml (~> 1.0.0)
dig_rb (1.0.1)
docile (1.1.5)
fluentd (1.1.0)
docile (1.3.1)
fluentd (1.5.0)
cool.io (>= 1.4.5, < 2.0.0)
dig_rb (~> 1.0.0)
http_parser.rb (>= 0.5.1, < 0.7.0)
Expand All @@ -31,41 +31,41 @@ GEM
tzinfo (~> 1.0)
tzinfo-data (~> 1.0)
yajl-ruby (~> 1.0)
hashdiff (0.3.7)
hashdiff (0.4.0)
http_parser.rb (0.6.0)
json (2.1.0)
minitest (5.10.3)
minitest-stub_any_instance (1.0.1)
msgpack (1.2.2)
power_assert (1.1.1)
public_suffix (3.0.1)
rake (12.3.0)
safe_yaml (1.0.4)
serverengine (2.0.6)
json (2.2.0)
minitest (5.11.3)
minitest-stub_any_instance (1.0.2)
msgpack (1.2.10)
power_assert (1.1.4)
public_suffix (3.1.0)
rake (12.3.2)
safe_yaml (1.0.5)
serverengine (2.1.1)
sigdump (~> 0.2.2)
sigdump (0.2.4)
simplecov (0.14.1)
docile (~> 1.1.0)
simplecov (0.16.1)
docile (~> 1.1)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
strptime (0.2.3)
term-ansicolor (1.6.0)
term-ansicolor (1.7.1)
tins (~> 1.0)
test-unit (3.2.6)
test-unit (3.3.3)
power_assert
thor (0.19.4)
thor (0.20.3)
thread_safe (0.3.6)
tins (1.16.0)
tzinfo (1.2.4)
tins (1.20.3)
tzinfo (1.2.5)
thread_safe (~> 0.1)
tzinfo-data (1.2017.3)
tzinfo-data (1.2019.1)
tzinfo (>= 1.0.0)
webmock (2.3.2)
webmock (3.5.1)
addressable (>= 2.3.6)
crack (>= 0.3.2)
hashdiff
yajl-ruby (1.3.1)
yajl-ruby (1.4.1)

PLATFORMS
ruby
Expand All @@ -78,7 +78,7 @@ DEPENDENCIES
rake
simplecov (~> 0.11)
test-unit (~> 3.1)
webmock (~> 2.0)
webmock (~> 3.0)

BUNDLED WITH
1.16.1
1.17.3
6 changes: 3 additions & 3 deletions fluent-plugin-syslog-tls.gemspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright 2016 Acquia, Inc.
# Copyright 2016-2018 t.e.morgan.
# Copyright 2016-2019 t.e.morgan.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -30,14 +30,14 @@ Gem::Specification.new do |s|
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.3.0'
s.required_ruby_version = '>= 2.4'

s.add_runtime_dependency 'fluentd', [">= 0.14.0", "< 2"]

s.add_development_dependency 'minitest', '~> 5.8'
s.add_development_dependency 'minitest-stub_any_instance', '~> 1.0.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'test-unit', '~> 3.1'
s.add_development_dependency 'webmock', '~> 2.0'
s.add_development_dependency 'webmock', '~> 3.0'
s.add_development_dependency 'simplecov', '~> 0.11'
end

0 comments on commit a182ff9

Please sign in to comment.