cb-api 18.5.5 → 18.5.6

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: f4152929bda0d894fabb20ae68601ce56a1d34c5
4
- data.tar.gz: 5f08fd177c1c82b72a55e7b5de013569f4d0286b
3
+ metadata.gz: de05df4a1a4d6a791a9674685920e97b5c2bf48c
4
+ data.tar.gz: 8b4d901ee83646279261a18b838f90ff27f6f905
5
5
  SHA512:
6
- metadata.gz: c4d735b9d566ba14f248ead8bcb06ab1b1fe8ba0acfed18903e81ab8a8ba3ddcef466cbce9e7dceee7eab1c486f54485e25f91b6414350b20b251c87d00d8b71
7
- data.tar.gz: 0431fd56ab6499924b1c194275b4e630a46a534d04ae844e50fac9f27ca943d84a01461d6d756206abbfba0fa79725a278df2e8243e03f9270e0f68a623c67b5
6
+ metadata.gz: 6a04f12ebf7ef2fbc9b33f5547d2bd4c8d73124155ec91f03b5515300968f61db77724f27e56a7eeaf69fc8ae3efca8689fb6ef94ca5a094c1f0d7e28c8510ef
7
+ data.tar.gz: 07b07a2e45f06dc3aa2fd3a23c204127c6f65bdad1065af1d09b52632dd62a7e5d6ad334b7bbaff7fa221c54443e16764d4a02acd66cad190665332d48578edb
data/CHANGELOG.md CHANGED
@@ -3,6 +3,7 @@ Version History
3
3
  * All Version bumps are required to update this file as well!!
4
4
  ----
5
5
 
6
+ * 18.5.6 Adding an additional field to application form
6
7
  * 18.5.5 Turn company recs response into an array if its not.
7
8
  * 18.5.4 Catch nil Jobs for company recs.
8
9
  * 18.5.3 Catch nil case before even fetching.
@@ -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
17
+ :total_questions, :total_required_questions, :is_two_step_apply
18
18
 
19
19
  protected
20
20
 
@@ -36,6 +36,7 @@ module Cb
36
36
  @total_required_questions = api_response['TotalRequiredQuestions'].to_i
37
37
  @experience_required = api_response['ExperienceRequired']
38
38
  @external_application = api_response['ExternalApplication']
39
+ @is_two_step_apply = api_response['IsTwoStepApply']
39
40
  @question_list = extracted_questions
40
41
  end
41
42
 
data/lib/cb/version.rb CHANGED
@@ -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 = '18.5.5'
12
+ VERSION = '18.5.6'
13
13
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cb-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 18.5.5
4
+ version: 18.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - The CareerBuilder.com Niche and Consumer Development teams