Skip to content

Commit

Permalink
Update rspec versions and require activesupport for zeitwork
Browse files Browse the repository at this point in the history
  • Loading branch information
JDutil committed Apr 3, 2024
1 parent 1e17b2c commit 7b4efa8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
25 changes: 13 additions & 12 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ GEM
connection_pool (2.4.1)
crack (0.4.5)
rexml
diff-lcs (1.5.0)
diff-lcs (1.5.1)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
dotenv (2.7.6)
Expand Down Expand Up @@ -75,19 +75,19 @@ GEM
public_suffix (4.0.6)
rake (12.3.3)
rexml (3.2.5)
rspec (3.10.0)
rspec-core (~> 3.10.0)
rspec-expectations (~> 3.10.0)
rspec-mocks (~> 3.10.0)
rspec-core (3.10.1)
rspec-support (~> 3.10.0)
rspec-expectations (3.10.2)
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.0)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-mocks (3.10.2)
rspec-support (~> 3.13.0)
rspec-mocks (3.13.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-support (3.10.3)
rspec-support (~> 3.13.0)
rspec-support (3.13.1)
stub_env (1.0.4)
rspec (>= 2.0, < 4.0)
tzinfo (2.0.6)
Expand All @@ -105,6 +105,7 @@ GEM
PLATFORMS
arm64-darwin-21
arm64-darwin-22
arm64-darwin-23
x86_64-darwin-20
x86_64-darwin-21
x86_64-linux
Expand Down
2 changes: 2 additions & 0 deletions lib/we_ship_client/interactors/get_tracking.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# frozen_string_literal: true

require 'active_support'
require 'active_support/core_ext' # required for `present?`
require 'we_ship_client/client'
require 'we_ship_client/exceptions'
require 'we_ship_client/entities'
Expand Down
1 change: 1 addition & 0 deletions lib/we_ship_client/transforms/tracking_item.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

require 'active_support'
require 'active_support/time_with_zone'

module WeShipClient
Expand Down

0 comments on commit 7b4efa8

Please sign in to comment.