diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 22416e3..05c62cb 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -17,7 +17,7 @@ jobs: timeout-minutes: 20 strategy: matrix: - ruby: [ '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', 'jruby-9.2' ] + ruby: [ '2.4', '2.5', '2.6', '2.7', '3.0', '3.1' ] steps: - name: Checkout ruby-http-client uses: actions/checkout@v2 diff --git a/LICENSE b/LICENSE index 3154774..126ceb1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (C) 2023, Twilio SendGrid, Inc. +Copyright (C) 2025, Twilio SendGrid, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/lib/ruby_http_client.rb b/lib/ruby_http_client.rb index 495f498..4b5517c 100644 --- a/lib/ruby_http_client.rb +++ b/lib/ruby_http_client.rb @@ -184,7 +184,7 @@ def build_args(args) # - The final url string # def build_url(query_params: nil) - url = [add_version(''), *@url_path].join('/') + url = [add_version(+''), *@url_path].join('/') url = build_query_params(url, query_params) if query_params URI.parse("#{@host}#{url}") end