cb-api 22.3.1 → 22.3.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 +4 -4
- data/CHANGELOG.md +1 -0
- data/README.md +1 -1
- data/lib/cb/models/implementations/application/form.rb +3 -1
- data/lib/cb/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2b3e22a84b94d582fdc080e4acb7b34e309eca99
|
|
4
|
+
data.tar.gz: b00f6ef87641b40aa631f0104725bab5c6b3b328
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85386c7ae9a617d6f80496e48d5d08f1b75e280bbe66c8b6cb1841402b3dd69ca2102b250861f9da7a6cfa824a4dd8fe5fa7369fb969e71537dcee0c1eaee554
|
|
7
|
+
data.tar.gz: 0891a43b2879aa3c3d49f6cd214de63b4e771d01e2aa11237f4c0b1e5709b93b6f94022e9dcc18388a78b275dacda994bcba263c271d265ffc090c366bca04f9
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,7 @@ Version History
|
|
|
2
2
|
====
|
|
3
3
|
* All Version bumps are required to update this file as well!!
|
|
4
4
|
----
|
|
5
|
+
* 22.3.2 Add is_dynamic_screener to application form API
|
|
5
6
|
* 22.3.1 Return an empty array for NoMethodError on recs.
|
|
6
7
|
* 22.3.0 Update validator to handle errors node being nested in the response.
|
|
7
8
|
* 22.2.1 Add error checking and raising back on Job call
|
data/README.md
CHANGED
|
@@ -12,7 +12,7 @@ If you are interested in helping out / contributing to this project please read
|
|
|
12
12
|
|
|
13
13
|
Installation
|
|
14
14
|
================
|
|
15
|
-
|
|
15
|
+
We have dropped support for ruby 1.8, 1.9, and 2.0. This gem may continue to work in those versions but we are not going to offically support it going forward.
|
|
16
16
|
|
|
17
17
|
Install required gems:
|
|
18
18
|
|
|
@@ -14,7 +14,7 @@ module Cb
|
|
|
14
14
|
class Form < ApiResponseModel
|
|
15
15
|
attr_reader :job_did, :job_title, :is_shared_apply, :question_list, :requirements,
|
|
16
16
|
:degree_required, :travel_required, :experience_required, :external_application,
|
|
17
|
-
:total_questions, :total_required_questions, :is_two_step_apply
|
|
17
|
+
:total_questions, :total_required_questions, :is_two_step_apply, :is_dynamic_screener
|
|
18
18
|
|
|
19
19
|
protected
|
|
20
20
|
|
|
@@ -37,6 +37,8 @@ module Cb
|
|
|
37
37
|
@experience_required = api_response['ExperienceRequired']
|
|
38
38
|
@external_application = api_response['ExternalApplication']
|
|
39
39
|
@is_two_step_apply = api_response['IsTwoStepApply']
|
|
40
|
+
@is_dynamic_screener = api_response['IsDynamicScreener']
|
|
41
|
+
|
|
40
42
|
@question_list = extracted_questions
|
|
41
43
|
end
|
|
42
44
|
|
data/lib/cb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cb-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 22.3.
|
|
4
|
+
version: 22.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- The CareerBuilder.com Niche and Consumer Development teams
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-01-
|
|
11
|
+
date: 2017-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|