Skip to content

Commit d31c8fe

Browse files
Updated required property in employee and employment model
Updated required property in employee and employment model
1 parent 58c1a05 commit d31c8fe

File tree

25 files changed

+1815
-340
lines changed

25 files changed

+1815
-340
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

Gemfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ source 'https://rubygems.org'
33
gemspec
44

55
group :development, :test do
6-
gem 'rake', '~> 12.3.3'
6+
gem 'rake', '~> 13.2.1'
77
gem 'pry-byebug'
8-
gem 'rubocop', '~> 0.70'
8+
gem 'rubocop', '~> 1.66.1'
9+
gem 'bundler-audit'
910
end

Gemfile.lock

Lines changed: 38 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -9,35 +9,40 @@ PATH
99
GEM
1010
remote: https://rubygems.org/
1111
specs:
12-
activesupport (7.1.3.4)
12+
activesupport (7.2.1)
1313
base64
1414
bigdecimal
15-
concurrent-ruby (~> 1.0, >= 1.0.2)
15+
concurrent-ruby (~> 1.0, >= 1.3.1)
1616
connection_pool (>= 2.2.5)
1717
drb
1818
i18n (>= 1.6, < 2)
19+
logger (>= 1.4.2)
1920
minitest (>= 5.1)
20-
mutex_m
21-
tzinfo (~> 2.0)
21+
securerandom (>= 0.3)
22+
tzinfo (~> 2.0, >= 2.0.5)
2223
aes_key_wrap (1.1.0)
2324
ast (2.4.2)
2425
base64 (0.2.0)
2526
bigdecimal (3.1.8)
2627
bindata (2.5.0)
28+
bundler-audit (0.9.2)
29+
bundler (>= 1.2.0, < 3)
30+
thor (~> 1.0)
2731
byebug (11.1.3)
2832
coderay (1.1.3)
29-
concurrent-ruby (1.3.3)
33+
concurrent-ruby (1.3.4)
3034
connection_pool (2.4.1)
3135
diff-lcs (1.5.1)
3236
drb (2.2.1)
33-
faraday (2.10.1)
34-
faraday-net_http (>= 2.0, < 3.2)
37+
faraday (2.12.0)
38+
faraday-net_http (>= 2.0, < 3.4)
39+
json
3540
logger
3641
faraday-follow_redirects (0.3.0)
3742
faraday (>= 1, < 3)
38-
faraday-net_http (3.1.1)
43+
faraday-net_http (3.3.0)
3944
net-http
40-
i18n (1.14.5)
45+
i18n (1.14.6)
4146
concurrent-ruby (~> 1.0)
4247
json (2.7.2)
4348
json-jwt (1.16.6)
@@ -47,14 +52,14 @@ GEM
4752
bindata
4853
faraday (~> 2.0)
4954
faraday-follow_redirects
50-
logger (1.6.0)
55+
language_server-protocol (3.17.0.3)
56+
logger (1.6.1)
5157
method_source (1.1.0)
52-
minitest (5.24.1)
53-
mutex_m (0.2.0)
58+
minitest (5.25.1)
5459
net-http (0.4.1)
5560
uri
56-
parallel (1.25.1)
57-
parser (3.3.4.0)
61+
parallel (1.26.3)
62+
parser (3.3.5.0)
5863
ast (~> 2.4.1)
5964
racc
6065
pry (0.14.2)
@@ -65,50 +70,51 @@ GEM
6570
pry (>= 0.13, < 0.15)
6671
racc (1.8.1)
6772
rainbow (3.1.1)
68-
rake (12.3.3)
73+
rake (13.2.1)
6974
regexp_parser (2.9.2)
70-
rexml (3.3.4)
71-
strscan
7275
rspec (3.13.0)
7376
rspec-core (~> 3.13.0)
7477
rspec-expectations (~> 3.13.0)
7578
rspec-mocks (~> 3.13.0)
76-
rspec-core (3.13.0)
79+
rspec-core (3.13.1)
7780
rspec-support (~> 3.13.0)
78-
rspec-expectations (3.13.1)
81+
rspec-expectations (3.13.3)
7982
diff-lcs (>= 1.2.0, < 2.0)
8083
rspec-support (~> 3.13.0)
81-
rspec-mocks (3.13.1)
84+
rspec-mocks (3.13.2)
8285
diff-lcs (>= 1.2.0, < 2.0)
8386
rspec-support (~> 3.13.0)
8487
rspec-support (3.13.1)
85-
rubocop (0.93.1)
88+
rubocop (1.66.1)
89+
json (~> 2.3)
90+
language_server-protocol (>= 3.17.0)
8691
parallel (~> 1.10)
87-
parser (>= 2.7.1.5)
92+
parser (>= 3.3.0.2)
8893
rainbow (>= 2.2.2, < 4.0)
89-
regexp_parser (>= 1.8)
90-
rexml
91-
rubocop-ast (>= 0.6.0)
94+
regexp_parser (>= 2.4, < 3.0)
95+
rubocop-ast (>= 1.32.2, < 2.0)
9296
ruby-progressbar (~> 1.7)
93-
unicode-display_width (>= 1.4.0, < 2.0)
94-
rubocop-ast (1.31.3)
97+
unicode-display_width (>= 2.4.0, < 3.0)
98+
rubocop-ast (1.32.3)
9599
parser (>= 3.3.1.0)
96100
ruby-progressbar (1.13.0)
97-
strscan (3.1.0)
101+
securerandom (0.3.1)
102+
thor (1.3.2)
98103
tzinfo (2.0.6)
99104
concurrent-ruby (~> 1.0)
100-
unicode-display_width (1.8.0)
101-
uri (0.13.0)
105+
unicode-display_width (2.6.0)
106+
uri (0.13.1)
102107

103108
PLATFORMS
104109
arm64-darwin-23
105110
ruby
106111

107112
DEPENDENCIES
113+
bundler-audit
108114
pry-byebug
109-
rake (~> 12.3.3)
115+
rake (~> 13.2.1)
110116
rspec (~> 3.6, >= 3.6.0)
111-
rubocop (~> 0.70)
117+
rubocop (~> 1.66.1)
112118
xero-ruby!
113119

114120
BUNDLED WITH

docs/accounting/AccountingApi.md

Lines changed: 76 additions & 76 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)