Skip to content

Commit

Permalink
Merge pull request #19 from majormoses/feature/lock-activesupport
Browse files Browse the repository at this point in the history
lock activesupport gem
  • Loading branch information
eheydrick committed Dec 22, 2015
2 parents d207b5c + 8dbef14 commit 4ada45f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang

## Unreleased

## [0.1.1] - 2015-12-21
### Added
- activesupport runtime dependency locked to 4.2.5 to ensure that we do not need ruby > 2.2

## [0.1.0] - 2015-12-03
### Added
- Added include and ignore options for devices at `metrics-net.rb`
Expand Down
2 changes: 1 addition & 1 deletion lib/sensu-plugins-network-checks/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module SensuPluginsNetworkChecks
module Version
MAJOR = 0
MINOR = 1
PATCH = 0
PATCH = 1

VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
end
Expand Down
1 change: 1 addition & 0 deletions sensu-plugins-network-checks.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'sensu-plugin', '1.2.0'
s.add_runtime_dependency 'net-ping', '1.7.8'
s.add_runtime_dependency 'whois', '3.6.3'
s.add_runtime_dependency 'activesupport', '4.2.5'

s.add_development_dependency 'bundler', '~> 1.7'
s.add_development_dependency 'codeclimate-test-reporter', '~> 0.4'
Expand Down

1 comment on commit 4ada45f

@analytically
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this activesupport used? If it's an upstream dependency we should add a comment.

Please sign in to comment.