cb-api 14.6.0 → 14.7.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +2 -0
- data/lib/cb/config.rb +1 -0
- data/lib/cb/requests/data_lists/desired_job_type.rb +13 -0
- data/lib/cb/version.rb +1 -1
- metadata +3 -2
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,8 @@ Version History
|
|
2
2
|
====
|
3
3
|
* All Version bumps are required to update this file as well!!
|
4
4
|
----
|
5
|
+
|
6
|
+
* 14.7.0 Adding desired job type data list
|
5
7
|
* 14.6.0 Adding language data-list as well as a refactor which will make the future
|
6
8
|
data-list apis that are coming much easier.
|
7
9
|
* 14.5.0 Added education code api call for resume view edit
|
data/lib/cb/config.rb
CHANGED
@@ -90,6 +90,7 @@ module Cb
|
|
90
90
|
@uri_country_codes ||= '/v1/countrycodes'
|
91
91
|
@uri_resume_education ||= '/consumer/datalist/ResumeEducation'
|
92
92
|
@uri_languages ||= '/consumer/datalist/languages'
|
93
|
+
@uri_desired_job_type ||= '/consumer/datalist/desiredjobtype'
|
93
94
|
@uri_state_list ||= '/ajax/citysuggest.aspx'
|
94
95
|
end
|
95
96
|
|
data/lib/cb/version.rb
CHANGED
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: 14.
|
4
|
+
version: 14.7.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-12-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: httparty
|
@@ -340,6 +340,7 @@ files:
|
|
340
340
|
- lib/cb/requests/data_lists/data_list_base.rb
|
341
341
|
- lib/cb/requests/data_lists/state.rb
|
342
342
|
- lib/cb/requests/data_lists/country_codes.rb
|
343
|
+
- lib/cb/requests/data_lists/desired_job_type.rb
|
343
344
|
- lib/cb/requests/data_lists/education_codes.rb
|
344
345
|
- lib/cb/requests/resumes/list.rb
|
345
346
|
- lib/cb/requests/resumes/put.rb
|