teamtailor 0.2.3 → 0.2.4
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 +4 -4
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/lib/teamtailor/client.rb +56 -0
- data/lib/teamtailor/parser/department.rb +8 -0
- data/lib/teamtailor/parser/location.rb +8 -0
- data/lib/teamtailor/parser/reject_reason.rb +8 -0
- data/lib/teamtailor/parser/stage.rb +8 -0
- data/lib/teamtailor/parser.rb +8 -0
- data/lib/teamtailor/version.rb +1 -1
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65d5517a7804ca23cfab37e186ce9a3a8e6fd834d19142f1639bd43a713f0cad
|
4
|
+
data.tar.gz: 1ce95b3c0f5734a5a75d7e735a2938396e66b1c6a66ecb636f11951e99cb16b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: befca1d520b6e38edde324a89a5ed7e2e45df37a08037c2ea466703e558d3a88c4401878c33e3021b38408ea5567616c5d67cc5ebeaac60eeaff289b29b6954c
|
7
|
+
data.tar.gz: c03ff827ea515229c96f4380a3aea14e5989060ffa1bf9c8146149135475040591179aad9444aee343bb81903a0f119dba9b5302589dde5dded132865c981654
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
## Unreleased
|
2
2
|
|
3
|
+
## v0.2.4 - 2020-04-07
|
4
|
+
|
5
|
+
- Add `Teamtailor::Location` and `Client#locations`
|
6
|
+
- Add `Teamtailor::Department` and `Client#departments`
|
7
|
+
- Add `Teamtailor::RejectReason` and `Client#reject_reasons`
|
8
|
+
- Add `Teamtailor::Stage` and `Client#stages` for fetching it (`2179b1`)
|
9
|
+
|
3
10
|
## v0.2.3 - 2020-04-06
|
4
11
|
|
5
12
|
- Add `Teamtailor::Company` and `Client#company` for fetching it (`05dde0`)
|
data/Gemfile.lock
CHANGED
data/lib/teamtailor/client.rb
CHANGED
@@ -78,6 +78,62 @@ module Teamtailor
|
|
78
78
|
).call
|
79
79
|
end
|
80
80
|
|
81
|
+
def stages(page: 1, include: [])
|
82
|
+
Teamtailor::Request.new(
|
83
|
+
base_url: base_url,
|
84
|
+
api_token: api_token,
|
85
|
+
api_version: api_version,
|
86
|
+
path: '/v1/stages',
|
87
|
+
params: {
|
88
|
+
'page[number]' => page,
|
89
|
+
'page[size]' => 30,
|
90
|
+
'include' => include.join(',')
|
91
|
+
}
|
92
|
+
).call
|
93
|
+
end
|
94
|
+
|
95
|
+
def reject_reasons(page: 1, include: [])
|
96
|
+
Teamtailor::Request.new(
|
97
|
+
base_url: base_url,
|
98
|
+
api_token: api_token,
|
99
|
+
api_version: api_version,
|
100
|
+
path: '/v1/reject-reasons',
|
101
|
+
params: {
|
102
|
+
'page[number]' => page,
|
103
|
+
'page[size]' => 30,
|
104
|
+
'include' => include.join(',')
|
105
|
+
}
|
106
|
+
).call
|
107
|
+
end
|
108
|
+
|
109
|
+
def departments(page: 1, include: [])
|
110
|
+
Teamtailor::Request.new(
|
111
|
+
base_url: base_url,
|
112
|
+
api_token: api_token,
|
113
|
+
api_version: api_version,
|
114
|
+
path: '/v1/departments',
|
115
|
+
params: {
|
116
|
+
'page[number]' => page,
|
117
|
+
'page[size]' => 30,
|
118
|
+
'include' => include.join(',')
|
119
|
+
}
|
120
|
+
).call
|
121
|
+
end
|
122
|
+
|
123
|
+
def locations(page: 1, include: [])
|
124
|
+
Teamtailor::Request.new(
|
125
|
+
base_url: base_url,
|
126
|
+
api_token: api_token,
|
127
|
+
api_version: api_version,
|
128
|
+
path: '/v1/locations',
|
129
|
+
params: {
|
130
|
+
'page[number]' => page,
|
131
|
+
'page[size]' => 30,
|
132
|
+
'include' => include.join(',')
|
133
|
+
}
|
134
|
+
).call
|
135
|
+
end
|
136
|
+
|
81
137
|
private
|
82
138
|
|
83
139
|
attr_reader :base_url, :api_token, :api_version
|
data/lib/teamtailor/parser.rb
CHANGED
@@ -5,6 +5,10 @@ require 'teamtailor/parser/job'
|
|
5
5
|
require 'teamtailor/parser/user'
|
6
6
|
require 'teamtailor/parser/job_application'
|
7
7
|
require 'teamtailor/parser/company'
|
8
|
+
require 'teamtailor/parser/stage'
|
9
|
+
require 'teamtailor/parser/reject_reason'
|
10
|
+
require 'teamtailor/parser/department'
|
11
|
+
require 'teamtailor/parser/location'
|
8
12
|
|
9
13
|
module Teamtailor
|
10
14
|
class Parser
|
@@ -20,6 +24,10 @@ module Teamtailor
|
|
20
24
|
when 'users' then Teamtailor::User.new(record, included)
|
21
25
|
when 'job-applications' then Teamtailor::JobApplication.new(record, included)
|
22
26
|
when 'companies' then Teamtailor::Company.new(record, included)
|
27
|
+
when 'stages' then Teamtailor::Stage.new(record, included)
|
28
|
+
when 'reject-reasons' then Teamtailor::RejectReason.new(record, included)
|
29
|
+
when 'departments' then Teamtailor::Department.new(record, included)
|
30
|
+
when 'locations' then Teamtailor::Location.new(record, included)
|
23
31
|
|
24
32
|
else
|
25
33
|
raise Teamtailor::UnknownResponseTypeError, record&.dig('type')
|
data/lib/teamtailor/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: teamtailor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Ligné
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-04-
|
11
|
+
date: 2020-04-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -63,8 +63,12 @@ files:
|
|
63
63
|
- lib/teamtailor/parser.rb
|
64
64
|
- lib/teamtailor/parser/candidate.rb
|
65
65
|
- lib/teamtailor/parser/company.rb
|
66
|
+
- lib/teamtailor/parser/department.rb
|
66
67
|
- lib/teamtailor/parser/job.rb
|
67
68
|
- lib/teamtailor/parser/job_application.rb
|
69
|
+
- lib/teamtailor/parser/location.rb
|
70
|
+
- lib/teamtailor/parser/reject_reason.rb
|
71
|
+
- lib/teamtailor/parser/stage.rb
|
68
72
|
- lib/teamtailor/parser/user.rb
|
69
73
|
- lib/teamtailor/record.rb
|
70
74
|
- lib/teamtailor/relationship.rb
|