File tree 3 files changed +14
-6
lines changed
3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ before_install: gem install bundler -v 1.15
5
5
install :
6
6
- bundle install
7
7
rvm :
8
- - 2.0
9
8
- 2.1
10
9
- 2.2
11
10
- 2.3.0
@@ -28,5 +27,9 @@ deploy:
28
27
on :
29
28
tags : true
30
29
all_branches : true
31
- rvm : 2.4.1
30
+ rvm :
31
+ - 2.1
32
+ - 2.2
33
+ - 2.3.0
34
+ - 2.4.1
32
35
repo : sensu-plugins/sensu-plugins-zfs
Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
This CHANGELOG follows the format located [ here] ( https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md )
5
5
6
6
## [ Unreleased]
7
+
8
+ ### Security
9
+ - updated rubocop dependency to ` ~> 0.51.0 ` per: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-8418 (@majormoses )
10
+
11
+ ### Breaking Changes
12
+ - in order to bring in the newer rubocop we had to drop ruby ` < 2.1 ` support (@majormoses )
13
+
7
14
### Changed
8
15
- accepted into community, a bunch of initial house keeping (@majormoses )
9
16
Original file line number Diff line number Diff line change 1
- # coding: utf-8
2
-
3
1
lib = File . expand_path ( '../lib' , __FILE__ )
4
2
$LOAD_PATH. unshift ( lib ) unless $LOAD_PATH. include? ( lib )
5
3
@@ -34,7 +32,7 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
34
32
spec . platform = Gem ::Platform ::RUBY
35
33
spec . post_install_message = 'You can use the embedded Ruby by setting EMBEDDED_RUBY=true in /etc/default/sensu'
36
34
spec . require_paths = [ 'lib' ]
37
- spec . required_ruby_version = '>= 2.0 .0'
35
+ spec . required_ruby_version = '>= 2.1 .0'
38
36
spec . summary = 'Sensu plugin for zfs'
39
37
spec . test_files = spec . files . grep ( %r{^(test|spec|features)/} )
40
38
spec . version = SensuPluginsZFS ::Version ::VER_STRING
@@ -46,7 +44,7 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
46
44
spec . add_development_dependency 'pry' , '~> 0.10'
47
45
spec . add_development_dependency 'rake' , '~> 10.0'
48
46
spec . add_development_dependency 'redcarpet' , '~> 3.2'
49
- spec . add_development_dependency 'rubocop' , '~> 0.49.0'
50
47
spec . add_development_dependency 'rspec' , '~> 3.1'
48
+ spec . add_development_dependency 'rubocop' , '~> 0.51.0'
51
49
spec . add_development_dependency 'yard' , '~> 0.8'
52
50
end
You can’t perform that action at this time.
0 commit comments