pricehubble 1.2.5 → 1.3.0

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: 0713110163f2784d14b1080484ba5133925e5c386fcbf29cf762dddce6825509
4
- data.tar.gz: 1359807e2a7eb33c1ff27225f2cb2ebf98fbe41f1d15e932aff546d858d8b941
3
+ metadata.gz: a07bc69bd21da2ef882a604b4fe9004058e498b55e054d570028bbf68f7c62cc
4
+ data.tar.gz: 47aa8a135d82dfadcff96647cfcbed8d676edcab4afa2b4c95c080d8ee11bac7
5
5
  SHA512:
6
- metadata.gz: 30a46b783569f6ea49cbc53fc07ed5ca1c2ff2cb71cf60db00952452a75c50f2aa9a0e274222effc73586dd47b4b427e0e08fae11f86bb99467236b2dd5fcb11
7
- data.tar.gz: d2e0c5f28d0a107a1af81efe1402ea4aa148190d83e40e0448cf64bedb56c4ed133725b82b1277c1f5750a527ff4d596f07c09660f60299dfe3dcbe4075ac70c
6
+ metadata.gz: f470b76681cdb721ea601c90ff82e09fec7dec6d6788a784e818060520cbd356fb4c2719cc193e592e13e48a50c373aad6b3994e23779d9ecd6dacd86127a16c
7
+ data.tar.gz: 7d4a5c14802732b4564287c6f535a0bfa857b44e4a8e5020084b900aed62197eb5a07d111de2c74e13a2e35f9f32101a3530a15ac810351fc60d6fa1cc8a4f94
data/.yardopts CHANGED
@@ -4,3 +4,4 @@
4
4
  -
5
5
  README.md
6
6
  doc/examples/**/*.rb
7
+ doc/*.md
data/CHANGELOG.md CHANGED
@@ -2,36 +2,40 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
- ### 1.2.5
5
+ ### 1.3.0 (4 October 2024)
6
+
7
+ * Upgraded the `recursive-open-struct` gem to `~> 2.0` (#10)
8
+
9
+ ### 1.2.5 (15 August 2024)
6
10
 
7
11
  * Just a retag of 1.2.1
8
12
 
9
- ### 1.2.4
13
+ ### 1.2.4 (15 August 2024)
10
14
 
11
15
  * Just a retag of 1.2.1
12
16
 
13
- ### 1.2.3
17
+ ### 1.2.3 (15 August 2024)
14
18
 
15
19
  * Just a retag of 1.2.1
16
20
 
17
- ### 1.2.2
21
+ ### 1.2.2 (9 August 2024)
18
22
 
19
23
  * Just a retag of 1.2.1
20
24
 
21
- ### 1.2.1
25
+ ### 1.2.1 (9 August 2024)
22
26
 
23
27
  * Added API docs building to continuous integration (#9)
24
28
 
25
- ### 1.2.0
29
+ ### 1.2.0 (8 July 2024)
26
30
 
27
31
  * Moved the development dependencies from the gemspec to the Gemfile (#7)
28
32
  * Dropped support for Ruby <2.7 (#8)
29
33
 
30
- ### 1.1.0
34
+ ### 1.1.0 (24 February 2023)
31
35
 
32
36
  * Added support for Gem release automation
33
37
 
34
- ### 1.0.0
38
+ ### 1.0.0 (18 January 2023)
35
39
 
36
40
  * Bundler >= 2.3 is from now on required as minimal version (#5)
37
41
  * Dropped support for Ruby < 2.5 (#5)
@@ -42,27 +46,27 @@
42
46
  `PriceHubble::BaseEntity#attributes(sanitize = false)` method has changed to
43
47
  a keyword argument `PriceHubble::BaseEntity#attributes(sanitize: false)` (#5)
44
48
 
45
- ### 0.4.2
49
+ ### 0.4.2 (15 October 2021)
46
50
 
47
51
  * Migrated to Github Actions
48
52
  * Migrated to our own coverage reporting
49
53
  * Added the code statistics to the test process
50
54
 
51
- ### 0.4.1
55
+ ### 0.4.1 (12 May 2021)
52
56
 
53
57
  * Corrected the GNU Make release target
54
58
 
55
- ### 0.4.0
59
+ ### 0.4.0 (11 December 2020)
56
60
 
57
61
  * Added initial dossier handling (create, delete, sharing link) (#3)
58
62
 
59
- ### 0.3.0
63
+ ### 0.3.0 (9 September 2020)
60
64
 
61
65
  * Dropped support for Rails <5.2 (#2)
62
66
  * Dropped support for Ruby <2.5 (#2)
63
67
  * Updated the faraday gem spec to `~> 1.0` (#2)
64
68
 
65
- ### 0.2.0
69
+ ### 0.2.0 (22 October 2019)
66
70
 
67
71
  * Added a configuration for request logging which is enabled by default now
68
72
  * Implemented a generic instrumentation facility
@@ -70,7 +74,7 @@
70
74
  now to make local development easier and error handling was added to be more
71
75
  robust on response issues)
72
76
 
73
- ### 0.1.0
77
+ ### 0.1.0 (15 October 2019)
74
78
 
75
79
  * Implemented a transparent authentication handling
76
80
  * Implemented all shared data types (`PriceHubble::Location`,
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module PriceHubble
5
5
  # The version of the +price-hubble+ gem
6
- VERSION = '1.2.5'
6
+ VERSION = '1.3.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
data/pricehubble.gemspec CHANGED
@@ -33,9 +33,9 @@ Gem::Specification.new do |spec|
33
33
 
34
34
  spec.required_ruby_version = '>= 2.7'
35
35
 
36
- spec.add_runtime_dependency 'activemodel', '>= 5.2'
37
- spec.add_runtime_dependency 'activesupport', '>= 5.2'
38
- spec.add_runtime_dependency 'faraday', '~> 1.0'
39
- spec.add_runtime_dependency 'faraday_middleware', '~> 1.0'
40
- spec.add_runtime_dependency 'recursive-open-struct', '~> 1.1'
36
+ spec.add_dependency 'activemodel', '>= 5.2'
37
+ spec.add_dependency 'activesupport', '>= 5.2'
38
+ spec.add_dependency 'faraday', '~> 1.0'
39
+ spec.add_dependency 'faraday_middleware', '~> 1.0'
40
+ spec.add_dependency 'recursive-open-struct', '~> 2.0'
41
41
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pricehubble
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.5
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-08-15 00:00:00.000000000 Z
11
+ date: 2024-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '1.1'
75
+ version: '2.0'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '1.1'
82
+ version: '2.0'
83
83
  description: Ruby client for the PriceHubble REST API
84
84
  email:
85
85
  - hermann.mayer92@gmail.com