cb-api 20.0.0 → 20.1.0

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: c0242c0310d95df0d5a5ec18e5b6854c854d6d75
4
- data.tar.gz: 57a461e4922d487512d15d42591202cb6895a536
3
+ metadata.gz: f57fd204f120fbc21c912ccc93a16b0bbd59a7a0
4
+ data.tar.gz: 9f75f19153218b1a2d50db4a131f4acba2b5061f
5
5
  SHA512:
6
- metadata.gz: 094c95855fd37458d597fe4c21e283bddc3367ee775aa5e057a4fbabb8e0db9573d418ef3aafffbc5ac09083847e69102facdf824aaa3e68ec065aab5868551f
7
- data.tar.gz: 361519737459ad1b9bbc70308009c0deeadc129036507a4b50d5167832d1e5a56f3514194bc35d665ad57ce70d8049c44d23b46188c49b726a3b331e02c7ab45
6
+ metadata.gz: 84dc11322da894ee4ec3ae1d1583e1e80180a2f6695d9471f887f04d8c75842082e00937cb1239109810fdc3c0f80994224a14fda304e8f2f6cc89b13f2cfadb
7
+ data.tar.gz: da7ae42ba24ac67126f337b374b75de93f6913e1ca86e6595f8b714706de1475980bb2f91ac032b8a26d9a3559b8ce8cb33c332ad0e4fd759ee78e5264b2b390
data/CHANGELOG.md CHANGED
@@ -2,7 +2,7 @@ Version History
2
2
  ====
3
3
  * All Version bumps are required to update this file as well!!
4
4
  ----
5
-
5
+ * 20.1.0 Remove Migration ID field from resume listing model.
6
6
  * 20.0.0 Refactoring of the clients. Breaking changes to AnonSavedSearch, EmployeeTypes, SavedSearch
7
7
  * 19.1.1 No functional differences, some code cleanup
8
8
  * 19.1.0 Add Migration ID field to resume listing model.
@@ -11,12 +11,11 @@
11
11
  module Cb
12
12
  module Models
13
13
  class ResumeListing < ApiResponseModel
14
- attr_accessor :title, :external_id, :migration_id, :host_site, :modified_dt, :visibility
14
+ attr_accessor :title, :external_id, :host_site, :modified_dt, :visibility
15
15
 
16
16
  def set_model_properties
17
17
  @title = api_response['Title']
18
18
  @external_id = api_response['ExternalID']
19
- @migration_id = api_response['MigrationID'] unless api_response['MigrationID'].nil?
20
19
  @host_site = api_response['HostSite']
21
20
  @modified_dt = api_response['ModifiedDT']
22
21
  @visibility = api_response['Visibility']
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 = '20.0.0'
12
+ VERSION = '20.1.0'
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: 20.0.0
4
+ version: 20.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - The CareerBuilder.com Niche and Consumer Development teams