Skip to content

Commit

Permalink
Shift ActiveSupport to a development dependency
Browse files Browse the repository at this point in the history
And explicitly require OpenSSL (presuming ActiveSupport was doing that
for us otherwise).
  • Loading branch information
pat committed Feb 15, 2024
1 parent f37d79a commit 5530fd1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ PATH
remote: .
specs:
buildkite-test_collector (2.4.0)
activesupport (>= 4.2)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -38,6 +37,7 @@ PLATFORMS
ruby

DEPENDENCIES
activesupport (>= 4.2)
buildkite-test_collector!
rake (~> 13.0)
rspec (~> 3.0)
Expand Down
3 changes: 1 addition & 2 deletions buildkite-test_collector.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")

spec.add_dependency "activesupport", ">= 4.2"

spec.add_development_dependency "activesupport", ">= 4.2"
spec.add_development_dependency "rspec-core", '~> 3.10'
spec.add_development_dependency "rspec-expectations", '~> 3.10'
end
1 change: 1 addition & 0 deletions lib/buildkite/test_collector.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module TestCollector
require "json"
require "logger"
require "net/http"
require "openssl"
require "time"
require "timeout"
require "tmpdir"
Expand Down

0 comments on commit 5530fd1

Please sign in to comment.