almodovar 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a80d5f5feb6306bce8c3c41c2b247163f34fd4baa0ca1a8c59e1345104da816
4
- data.tar.gz: 295c3a04cb31fd713c32849a985504c2885a127ae99b783fa8722f0343e5d82e
3
+ metadata.gz: e64e56d85330df4abc31f68a39ad05412127cbdad5caa6d3ac1a83e30729ec95
4
+ data.tar.gz: 38aca16cdae2ba8e670b1d8666db507182ab47a5362b697c06a050919e2e40c8
5
5
  SHA512:
6
- metadata.gz: 20047165744d92a263ed04f37442f181b0600d885915ae31bac09743e65565918bb7c35d10e9393bdaf5e4ddb18284dc1ed7cbdeb968eb500b98f255711e3a53
7
- data.tar.gz: 67008238eb5674868ea70e1a4ec270f30a418cc0ce93de8bf1153a26b11a623430a17a8a143aa8103b70995346c1e7200ebf80abad38a7469b1ce7bb95209fa4
6
+ metadata.gz: 91f9b66cbf6fd0a18dbb4e63d7563495f53c718fc38f313afabe689b491f62dca01b8ff7644013359e1ebd95b951dd9b03e70356fee066828522de1f0a030c8b
7
+ data.tar.gz: 70543c6256fffb6bf4db19fc7a0a356087691ec1c98eafc0c12fb9d7b5a748319cd3c6acab0809d652ca0d46a3e3f14fe89ed50943aaa253f8137f2dfb389c95
data/README.rdoc CHANGED
@@ -1,4 +1,4 @@
1
- =Almodovar {<img src="https://github.com/bebanjo/almodovar/workflows/CI/badge.svg" />}[http://travis-ci.org/bebanjo/almodovar]
1
+ =Almodovar
2
2
 
3
3
  Almodovar is a client for BeBanjo's Sequence & Movida API written in Ruby (it's actually a generic client which plays nice with any RESTful API following some conventions).
4
4
 
@@ -140,4 +140,4 @@ In case an incorrect _PUT/POST_ request fails with 422 response status, you can
140
140
  * Write the conventions Almodovar expects in an API
141
141
  * Other authentication methods than digest
142
142
 
143
- Copyright (c) 2010 BeBanjo S.L., released under the MIT license
143
+ Copyright (c) 2023 BeBanjo S.L., released under the MIT license
@@ -1,12 +1,13 @@
1
1
  module Almodovar
2
2
  class HttpError < StandardError
3
- attr_reader :response_status, :response_body, :response_headers
3
+ attr_reader :response_status, :response_body, :response_headers, :response_url
4
4
 
5
5
  # Children of this class must not override the initialize method
6
6
  def initialize(response, url, query_params = {})
7
7
  @response_status = response.status
8
8
  @response_body = response.body
9
9
  @response_headers = response.headers
10
+ @response_url = url
10
11
  message = "Status code #{response.status} on resource #{url}"
11
12
  message += " with params: #{query_params.inspect}" if query_params.present?
12
13
  super(message)
@@ -1,3 +1,3 @@
1
1
  module Almodovar
2
- VERSION = '2.0.1'
2
+ VERSION = '2.0.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: almodovar
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - BeBanjo S.L.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-08 00:00:00.000000000 Z
11
+ date: 2023-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: builder
@@ -161,7 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
161
161
  - !ruby/object:Gem::Version
162
162
  version: '0'
163
163
  requirements: []
164
- rubygems_version: 3.0.3
164
+ rubygems_version: 3.1.2
165
165
  signing_key:
166
166
  specification_version: 4
167
167
  summary: BeBanjo API client