Skip to content

Commit

Permalink
Update to support ruby 3.0 (#60)
Browse files Browse the repository at this point in the history
* bump ignore

* allow newer net-http-persistent versions

* Update ruby.yml

Include ruby v3 in test matrix

Co-authored-by: d-telnyx <[email protected]>
  • Loading branch information
pyrareae and d-telnyx authored Apr 8, 2021
1 parent 02a4543 commit c82d846
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.5', '2.6', '2.7' ]
ruby: [ '2.5', '2.6', '2.7', '3.0' ]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ tags
/.bundle/
coverage/
.idea/
vendor/*
vendor/*
TAGS
.ruby-version
2 changes: 1 addition & 1 deletion telnyx.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |s|
}

s.add_dependency("faraday", ">= 0.13", "< 2.0", "!= 0.16.0", "!= 0.16.1", "!= 0.16.2", "!= 0.17.1")
s.add_dependency("net-http-persistent", "~> 3.0")
s.add_dependency("net-http-persistent", ">= 3.0", "< 5.0")
s.add_dependency("ed25519", "~> 1")

s.files = `git ls-files`.split("\n")
Expand Down

0 comments on commit c82d846

Please sign in to comment.