Skip to content

Commit

Permalink
Add csv to Gemfile
Browse files Browse the repository at this point in the history
This is to suppress the following warning:

```
/Users/bob/.bundles/ruby/3.3.0/gems/httparty-0.21.0/lib/httparty.rb:10: warning: csv was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.4.0. Add csv to your Gemfile or gemspec. Also contact author of httparty-0.21.0 to add csv into its gemspec.
```
  • Loading branch information
rjw1 committed Feb 14, 2024
1 parent 39b9d5d commit c00e8e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ source "https://rubygems.org"
ruby "~> 3.3.0"

gem 'httparty'
gem 'csv'
gem 'dotenv'
gem 'pry'
gem 'rspec'
Expand Down
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ GEM
crack (1.0.0)
bigdecimal
rexml
csv (3.2.8)
diff-lcs (1.5.1)
dotenv (3.0.0)
drb (2.2.0)
Expand Down Expand Up @@ -116,6 +117,7 @@ PLATFORMS

DEPENDENCIES
activesupport
csv
dotenv
httparty
opsgenie-schedule (~> 0.1.4)
Expand Down

0 comments on commit c00e8e3

Please sign in to comment.