billomat 1.2.4 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad0e65d3f6caab6454afb2d63456ab444be04cb111c3a889b0322d9d7d40aa7b
4
- data.tar.gz: b6489373eb6e73a5a37cc2287fcc110f002a00f596dbd7918752a7431c17f6d5
3
+ metadata.gz: c167f4c07f96fd19717728953d62deb4185b99b3822a7ff5c45a022f133907a4
4
+ data.tar.gz: ddde00ee22f03f7c43e88b7350a865732e80f14f0f106834ab0ed1a1d4414c65
5
5
  SHA512:
6
- metadata.gz: d698b14b77d68064a0b1c16be5f649178862f73eb2dac0644eba6c7a13a680017ad2504ea070f46cbe95f7900dc9bcf9a696a11ff7094029ae1dac7fa3dd9cad
7
- data.tar.gz: b16292c406184e78208b9549f28d4e071688a0672f33bcaa4a099dfcc2837f3a3359f2f1bd0c62858326e6e2b89d0a284aa8bda4f9a9a5a7f3c831164d41bb36
6
+ metadata.gz: ffe859647dcaca71302a400bd25df857a9f4c790236ef59b699bf520adc6e8a9d1e909c4820feacb3d83f1734017ccbc8cd8ef6bbbc8a2663e9e70888b04447d
7
+ data.tar.gz: f14f878aa99ed33587124cbf33a8544e5a94e563b6f62788e24593ede62b1892cd15f0c9b9ae30308d76bf49cbcb99282e99fc7556f12c67f530c9d9d96dbe4e
@@ -18,7 +18,7 @@ jobs:
18
18
  strategy:
19
19
  fail-fast: false
20
20
  matrix:
21
- ruby: ['2.7']
21
+ ruby: ['2.7', '3.0']
22
22
  steps:
23
23
  - uses: actions/checkout@v4
24
24
 
data/.rubocop.yml CHANGED
@@ -13,7 +13,7 @@ AllCops:
13
13
  SuggestExtensions: false
14
14
  DisplayCopNames: true
15
15
  TargetRubyVersion: 2.7
16
- TargetRailsVersion: 5.2
16
+ TargetRailsVersion: 6.1
17
17
  Exclude:
18
18
  - bin/**/*
19
19
  - vendor/**/*
data/.yardopts CHANGED
@@ -3,4 +3,5 @@
3
3
  --markup=rdoc
4
4
  -
5
5
  README.md
6
- lib/**/*.rb
6
+ doc/examples/**/*.rb
7
+ doc/*.md
data/CHANGELOG.md CHANGED
@@ -2,34 +2,42 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
- ### 1.2.4
5
+ ### 1.3.0 (3 January 2025)
6
+
7
+ * Raised minimum supported Ruby/Rails version to 2.7/6.1 (#26)
8
+
9
+ ### 1.2.5 (15 August 2024)
10
+
11
+ * Just a retag of 1.2.1
12
+
13
+ ### 1.2.4 (15 August 2024)
6
14
 
7
15
  * Just a retag of 1.2.1
8
16
 
9
- ### 1.2.3
17
+ ### 1.2.3 (15 August 2024)
10
18
 
11
19
  * Just a retag of 1.2.1
12
20
 
13
- ### 1.2.2
21
+ ### 1.2.2 (9 August 2024)
14
22
 
15
23
  * Just a retag of 1.2.1
16
24
 
17
- ### 1.2.1
25
+ ### 1.2.1 (9 August 2024)
18
26
 
19
27
  * Added API docs building to continuous integration (#25)
20
28
 
21
- ### 1.2.0
29
+ ### 1.2.0 (8 July 2024)
22
30
 
23
31
  * Moved the development dependencies from the gemspec to the Gemfile (#19)
24
32
  * Introduce `after_response` callback (#22)
25
33
  * Fix response parsing for responses exceeding the page size (#23)
26
34
  * Dropped support for Ruby <2.7 (#24)
27
35
 
28
- ### 1.1.0
36
+ ### 1.1.0 (24 February 2023)
29
37
 
30
38
  * Added support for Gem release automation
31
39
 
32
- ### 1.0.0
40
+ ### 1.0.0 (18 January 2023)
33
41
 
34
42
  * Bundler >= 2.3 is from now on required as minimal version (#18)
35
43
  * Dropped support for Ruby < 2.5 (#18)
@@ -37,11 +45,11 @@
37
45
  * Updated all development/runtime gems to their latest
38
46
  Ruby 2.5 compatible version (#18)
39
47
 
40
- ### 0.4.1
48
+ ### 0.4.1 (27 June 2022)
41
49
 
42
50
  * Added `InvoiceComment` models (#17)
43
51
 
44
- ### 0.3.0
52
+ ### 0.3.0 (11 October 2021)
45
53
 
46
54
  * Improve error handling (breaking change, as we are now raising
47
55
  `Billomat::GatewayError`s rather than just the client's
@@ -52,7 +60,7 @@
52
60
  * Moved to GitHub Actions
53
61
  * Migrated to our own coverage reporting
54
62
 
55
- ### 0.2.0
63
+ ### 0.2.0 (12 May 2021)
56
64
 
57
65
  * Add codeclimate test runner
58
66
  * Update codeclimate reporter id
@@ -61,31 +69,31 @@
61
69
  * Changed travis-ci.org to travis-ci.com links
62
70
  * Adds templates and tags to models (#13)
63
71
 
64
- ### 0.1.6
72
+ ### 0.1.6 (16 May 2018)
65
73
 
66
74
  * Support registered apps
67
75
  * Added `app_id` and `app_secret` to configuration (#9)
68
76
 
69
- ### 0.1.5
77
+ ### 0.1.5 (14 November 2017)
70
78
 
71
79
  * Added contact support
72
80
 
73
- ### 0.1.4
81
+ ### 0.1.4 (9 November 2017)
74
82
 
75
83
  * Made timeout configurable
76
84
 
77
- ### 0.1.3
85
+ ### 0.1.3 (27 October 2017)
78
86
 
79
87
  * Added `#as_json` to base model
80
88
 
81
- ### 0.1.2
89
+ ### 0.1.2 (27 October 2017)
82
90
 
83
91
  * Small fixes and code coverage
84
92
 
85
- ### 0.1.1
93
+ ### 0.1.1 (19 October 2017)
86
94
 
87
95
  * Improved documentation and README
88
96
 
89
- ### 0.1.0
97
+ ### 0.1.0 (5 October 2017)
90
98
 
91
99
  * Initial release
data/billomat.gemspec CHANGED
@@ -33,5 +33,5 @@ Gem::Specification.new do |spec|
33
33
 
34
34
  spec.required_ruby_version = '>= 2.7'
35
35
 
36
- spec.add_runtime_dependency 'rest-client', '~> 2.1'
36
+ spec.add_dependency 'rest-client', '~> 2.1'
37
37
  end
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Billomat
5
5
  # The version of the +billomat+ gem
6
- VERSION = '1.2.4'
6
+ VERSION = '1.3.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: billomat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.4
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2024-08-15 00:00:00.000000000 Z
12
+ date: 2025-01-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rest-client