cb-api 22.3.1 → 22.3.2

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
  SHA1:
3
- metadata.gz: c19eeec21d0225af3e62571a8f6d303280e441b4
4
- data.tar.gz: 46f98d8cb0f1d2edc214322bda9ef929b73bb55f
3
+ metadata.gz: 2b3e22a84b94d582fdc080e4acb7b34e309eca99
4
+ data.tar.gz: b00f6ef87641b40aa631f0104725bab5c6b3b328
5
5
  SHA512:
6
- metadata.gz: 58e602b106ee4e1f3248247491fc8da1bbf6309c414d9f488d8f1c03740f418cc8ccd5f691f35d3a067a01a76b426581fef5be907fe249f8de77d4d429cb2a79
7
- data.tar.gz: 91337d65d080249e3d58d7f9f2c027c649ce276d4d0ffaedc003f0199085e4cab4295ef38d8574a0dc6cc38fd51c5226f63079e916a7ab73689a21c1cf9f01a1
6
+ metadata.gz: 85386c7ae9a617d6f80496e48d5d08f1b75e280bbe66c8b6cb1841402b3dd69ca2102b250861f9da7a6cfa824a4dd8fe5fa7369fb969e71537dcee0c1eaee554
7
+ data.tar.gz: 0891a43b2879aa3c3d49f6cd214de63b4e771d01e2aa11237f4c0b1e5709b93b6f94022e9dcc18388a78b275dacda994bcba263c271d265ffc090c366bca04f9
@@ -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
- As of 18.0 we are dropping support for ruby 1.87 and ruby 1.93. It may continue to work in 1.9.3 but we are not going to offically support it going forward.
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
 
@@ -9,5 +9,5 @@
9
9
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
10
  # See the License for the specific language governing permissions and limitations under the License.
11
11
  module Cb
12
- VERSION = '22.3.1'
12
+ VERSION = '22.3.2'
13
13
  end
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.1
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-04 00:00:00.000000000 Z
11
+ date: 2017-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty