cb-api 16.2.2 → 16.3.0
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 +7 -0
- data/CHANGELOG.md +2 -0
- data/lib/cb/responses/errors.rb +1 -1
- data/lib/cb/version.rb +1 -1
- metadata +142 -168
    
        checksums.yaml
    ADDED
    
    | @@ -0,0 +1,7 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            SHA1:
         | 
| 3 | 
            +
              metadata.gz: 8046403de4f6a1efab5bca180496e17a50430f1f
         | 
| 4 | 
            +
              data.tar.gz: 1c62bd9e585e9a1d92d0ff2a70a2264c98e21d16
         | 
| 5 | 
            +
            SHA512:
         | 
| 6 | 
            +
              metadata.gz: c1b6566803730c435efdfdc1f4f827e0453a5ff7073fe7af1bb3098c30701c13e15777b84f1b3378c24aabfafbde08b42b80a7ebc012b60508409f27ace582a1
         | 
| 7 | 
            +
              data.tar.gz: d688616894a70bc3e2a2f7be4a5ae9757a929ad4bc9905353e57578b6ea5f88d82f1008780a54ea65b08eae4dd06f64a7bc95c068e20388d427c2d5eed68338c
         | 
    
        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 | 
            +
            * 16.3.0 changed api error response to use join instead of to_s
         | 
| 5 7 | 
             
            * 16.2.2 change degree code to be degree which fixes compatibilty problems
         | 
| 6 8 | 
             
            * 16.2.1 fix major or program in resume put. it was looking for the wrong value
         | 
| 7 9 | 
             
            * 16.2.0 Added support for work experience ID in resume put
         | 
    
        data/lib/cb/responses/errors.rb
    CHANGED
    
    | @@ -16,7 +16,7 @@ module Cb | |
| 16 16 | 
             
                  def parsed_errors
         | 
| 17 17 | 
             
                    return Array.new unless response.respond_to?(:map)
         | 
| 18 18 | 
             
                    errors = response.map { |key, value| parsed_error(key, value) }.flatten
         | 
| 19 | 
            -
                    raise ApiResponseError.new(errors. | 
| 19 | 
            +
                    raise ApiResponseError.new(errors.join(',')) if errors.any? && should_raise
         | 
| 20 20 | 
             
                    errors
         | 
| 21 21 | 
             
                  end
         | 
| 22 22 |  | 
    
        data/lib/cb/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,20 +1,18 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: cb-api
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 16. | 
| 5 | 
            -
              prerelease: 
         | 
| 4 | 
            +
              version: 16.3.0
         | 
| 6 5 | 
             
            platform: ruby
         | 
| 7 6 | 
             
            authors:
         | 
| 8 7 | 
             
            - The CareerBuilder.com Niche and Consumer Development teams
         | 
| 9 8 | 
             
            autorequire: 
         | 
| 10 9 | 
             
            bindir: bin
         | 
| 11 10 | 
             
            cert_chain: []
         | 
| 12 | 
            -
            date: 2015-02- | 
| 11 | 
            +
            date: 2015-02-10 00:00:00.000000000 Z
         | 
| 13 12 | 
             
            dependencies:
         | 
| 14 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 14 | 
             
              name: httparty
         | 
| 16 15 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 17 | 
            -
                none: false
         | 
| 18 16 | 
             
                requirements:
         | 
| 19 17 | 
             
                - - ~>
         | 
| 20 18 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -22,7 +20,6 @@ dependencies: | |
| 22 20 | 
             
              type: :runtime
         | 
| 23 21 | 
             
              prerelease: false
         | 
| 24 22 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 25 | 
            -
                none: false
         | 
| 26 23 | 
             
                requirements:
         | 
| 27 24 | 
             
                - - ~>
         | 
| 28 25 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -30,29 +27,26 @@ dependencies: | |
| 30 27 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 31 28 | 
             
              name: json
         | 
| 32 29 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 33 | 
            -
                none: false
         | 
| 34 30 | 
             
                requirements:
         | 
| 35 31 | 
             
                - - ~>
         | 
| 36 32 | 
             
                  - !ruby/object:Gem::Version
         | 
| 37 33 | 
             
                    version: '1.7'
         | 
| 38 | 
            -
                - -  | 
| 34 | 
            +
                - - '>='
         | 
| 39 35 | 
             
                  - !ruby/object:Gem::Version
         | 
| 40 36 | 
             
                    version: 1.7.7
         | 
| 41 37 | 
             
              type: :runtime
         | 
| 42 38 | 
             
              prerelease: false
         | 
| 43 39 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 44 | 
            -
                none: false
         | 
| 45 40 | 
             
                requirements:
         | 
| 46 41 | 
             
                - - ~>
         | 
| 47 42 | 
             
                  - !ruby/object:Gem::Version
         | 
| 48 43 | 
             
                    version: '1.7'
         | 
| 49 | 
            -
                - -  | 
| 44 | 
            +
                - - '>='
         | 
| 50 45 | 
             
                  - !ruby/object:Gem::Version
         | 
| 51 46 | 
             
                    version: 1.7.7
         | 
| 52 47 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 53 48 | 
             
              name: nori
         | 
| 54 49 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 55 | 
            -
                none: false
         | 
| 56 50 | 
             
                requirements:
         | 
| 57 51 | 
             
                - - ~>
         | 
| 58 52 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -60,7 +54,6 @@ dependencies: | |
| 60 54 | 
             
              type: :runtime
         | 
| 61 55 | 
             
              prerelease: false
         | 
| 62 56 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 63 | 
            -
                none: false
         | 
| 64 57 | 
             
                requirements:
         | 
| 65 58 | 
             
                - - ~>
         | 
| 66 59 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -68,7 +61,6 @@ dependencies: | |
| 68 61 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 69 62 | 
             
              name: nokogiri
         | 
| 70 63 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 71 | 
            -
                none: false
         | 
| 72 64 | 
             
                requirements:
         | 
| 73 65 | 
             
                - - ~>
         | 
| 74 66 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -76,7 +68,6 @@ dependencies: | |
| 76 68 | 
             
              type: :runtime
         | 
| 77 69 | 
             
              prerelease: false
         | 
| 78 70 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 79 | 
            -
                none: false
         | 
| 80 71 | 
             
                requirements:
         | 
| 81 72 | 
             
                - - ~>
         | 
| 82 73 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -84,71 +75,62 @@ dependencies: | |
| 84 75 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 85 76 | 
             
              name: rake
         | 
| 86 77 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 87 | 
            -
                none: false
         | 
| 88 78 | 
             
                requirements:
         | 
| 89 | 
            -
                - -  | 
| 79 | 
            +
                - - '>='
         | 
| 90 80 | 
             
                  - !ruby/object:Gem::Version
         | 
| 91 81 | 
             
                    version: 0.8.7
         | 
| 92 82 | 
             
              type: :development
         | 
| 93 83 | 
             
              prerelease: false
         | 
| 94 84 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 95 | 
            -
                none: false
         | 
| 96 85 | 
             
                requirements:
         | 
| 97 | 
            -
                - -  | 
| 86 | 
            +
                - - '>='
         | 
| 98 87 | 
             
                  - !ruby/object:Gem::Version
         | 
| 99 88 | 
             
                    version: 0.8.7
         | 
| 100 89 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 101 90 | 
             
              name: webmock
         | 
| 102 91 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 103 | 
            -
                none: false
         | 
| 104 92 | 
             
                requirements:
         | 
| 105 93 | 
             
                - - ~>
         | 
| 106 94 | 
             
                  - !ruby/object:Gem::Version
         | 
| 107 | 
            -
                    version: 1.9 | 
| 95 | 
            +
                    version: '1.9'
         | 
| 108 96 | 
             
              type: :development
         | 
| 109 97 | 
             
              prerelease: false
         | 
| 110 98 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 111 | 
            -
                none: false
         | 
| 112 99 | 
             
                requirements:
         | 
| 113 100 | 
             
                - - ~>
         | 
| 114 101 | 
             
                  - !ruby/object:Gem::Version
         | 
| 115 | 
            -
                    version: 1.9 | 
| 102 | 
            +
                    version: '1.9'
         | 
| 116 103 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 117 104 | 
             
              name: simplecov
         | 
| 118 105 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 119 | 
            -
                none: false
         | 
| 120 106 | 
             
                requirements:
         | 
| 121 | 
            -
                - -  | 
| 107 | 
            +
                - - '>='
         | 
| 122 108 | 
             
                  - !ruby/object:Gem::Version
         | 
| 123 109 | 
             
                    version: 0.7.1
         | 
| 124 110 | 
             
              type: :development
         | 
| 125 111 | 
             
              prerelease: false
         | 
| 126 112 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 127 | 
            -
                none: false
         | 
| 128 113 | 
             
                requirements:
         | 
| 129 | 
            -
                - -  | 
| 114 | 
            +
                - - '>='
         | 
| 130 115 | 
             
                  - !ruby/object:Gem::Version
         | 
| 131 116 | 
             
                    version: 0.7.1
         | 
| 132 117 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 133 118 | 
             
              name: rspec
         | 
| 134 119 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 135 | 
            -
                none: false
         | 
| 136 120 | 
             
                requirements:
         | 
| 137 121 | 
             
                - - ~>
         | 
| 138 122 | 
             
                  - !ruby/object:Gem::Version
         | 
| 139 | 
            -
                    version: ' | 
| 123 | 
            +
                    version: '3.0'
         | 
| 140 124 | 
             
              type: :development
         | 
| 141 125 | 
             
              prerelease: false
         | 
| 142 126 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 143 | 
            -
                none: false
         | 
| 144 127 | 
             
                requirements:
         | 
| 145 128 | 
             
                - - ~>
         | 
| 146 129 | 
             
                  - !ruby/object:Gem::Version
         | 
| 147 | 
            -
                    version: ' | 
| 130 | 
            +
                    version: '3.0'
         | 
| 148 131 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 149 132 | 
             
              name: rdoc
         | 
| 150 133 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 151 | 
            -
                none: false
         | 
| 152 134 | 
             
                requirements:
         | 
| 153 135 | 
             
                - - ~>
         | 
| 154 136 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -156,7 +138,6 @@ dependencies: | |
| 156 138 | 
             
              type: :development
         | 
| 157 139 | 
             
              prerelease: false
         | 
| 158 140 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 159 | 
            -
                none: false
         | 
| 160 141 | 
             
                requirements:
         | 
| 161 142 | 
             
                - - ~>
         | 
| 162 143 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -164,23 +145,20 @@ dependencies: | |
| 164 145 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 165 146 | 
             
              name: rspec-pride
         | 
| 166 147 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 167 | 
            -
                none: false
         | 
| 168 148 | 
             
                requirements:
         | 
| 169 149 | 
             
                - - ~>
         | 
| 170 150 | 
             
                  - !ruby/object:Gem::Version
         | 
| 171 | 
            -
                    version:  | 
| 151 | 
            +
                    version: '3.0'
         | 
| 172 152 | 
             
              type: :development
         | 
| 173 153 | 
             
              prerelease: false
         | 
| 174 154 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 175 | 
            -
                none: false
         | 
| 176 155 | 
             
                requirements:
         | 
| 177 156 | 
             
                - - ~>
         | 
| 178 157 | 
             
                  - !ruby/object:Gem::Version
         | 
| 179 | 
            -
                    version:  | 
| 158 | 
            +
                    version: '3.0'
         | 
| 180 159 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 181 160 | 
             
              name: pry
         | 
| 182 161 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 183 | 
            -
                none: false
         | 
| 184 162 | 
             
                requirements:
         | 
| 185 163 | 
             
                - - '='
         | 
| 186 164 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -188,7 +166,6 @@ dependencies: | |
| 188 166 | 
             
              type: :development
         | 
| 189 167 | 
             
              prerelease: false
         | 
| 190 168 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 191 | 
            -
                none: false
         | 
| 192 169 | 
             
                requirements:
         | 
| 193 170 | 
             
                - - '='
         | 
| 194 171 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -196,7 +173,6 @@ dependencies: | |
| 196 173 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 197 174 | 
             
              name: rb-readline
         | 
| 198 175 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 199 | 
            -
                none: false
         | 
| 200 176 | 
             
                requirements:
         | 
| 201 177 | 
             
                - - ~>
         | 
| 202 178 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -204,7 +180,6 @@ dependencies: | |
| 204 180 | 
             
              type: :development
         | 
| 205 181 | 
             
              prerelease: false
         | 
| 206 182 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 207 | 
            -
                none: false
         | 
| 208 183 | 
             
                requirements:
         | 
| 209 184 | 
             
                - - ~>
         | 
| 210 185 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -215,193 +190,192 @@ executables: [] | |
| 215 190 | 
             
            extensions: []
         | 
| 216 191 | 
             
            extra_rdoc_files: []
         | 
| 217 192 | 
             
            files:
         | 
| 193 | 
            +
            - CHANGELOG.md
         | 
| 194 | 
            +
            - README.md
         | 
| 218 195 | 
             
            - lib/cb.rb
         | 
| 219 | 
            -
            - lib/cb/ | 
| 220 | 
            -
            - lib/cb/ | 
| 221 | 
            -
            - lib/cb/ | 
| 222 | 
            -
            - lib/cb/ | 
| 223 | 
            -
            - lib/cb/ | 
| 196 | 
            +
            - lib/cb/client.rb
         | 
| 197 | 
            +
            - lib/cb/clients/anon_saved_search.rb
         | 
| 198 | 
            +
            - lib/cb/clients/application.rb
         | 
| 199 | 
            +
            - lib/cb/clients/application_external.rb
         | 
| 200 | 
            +
            - lib/cb/clients/category.rb
         | 
| 201 | 
            +
            - lib/cb/clients/company.rb
         | 
| 202 | 
            +
            - lib/cb/clients/education.rb
         | 
| 203 | 
            +
            - lib/cb/clients/employee_types.rb
         | 
| 204 | 
            +
            - lib/cb/clients/industry.rb
         | 
| 205 | 
            +
            - lib/cb/clients/job.rb
         | 
| 206 | 
            +
            - lib/cb/clients/job_branding.rb
         | 
| 207 | 
            +
            - lib/cb/clients/recommendation.rb
         | 
| 208 | 
            +
            - lib/cb/clients/saved_search.rb
         | 
| 209 | 
            +
            - lib/cb/clients/spot.rb
         | 
| 210 | 
            +
            - lib/cb/clients/talent_network.rb
         | 
| 211 | 
            +
            - lib/cb/clients/user.rb
         | 
| 212 | 
            +
            - lib/cb/config.rb
         | 
| 213 | 
            +
            - lib/cb/convenience.rb
         | 
| 224 214 | 
             
            - lib/cb/criteria/application/cover_letter.rb
         | 
| 225 | 
            -
            - lib/cb/criteria/application/response.rb
         | 
| 226 215 | 
             
            - lib/cb/criteria/application/create.rb
         | 
| 216 | 
            +
            - lib/cb/criteria/application/get.rb
         | 
| 217 | 
            +
            - lib/cb/criteria/application/response.rb
         | 
| 218 | 
            +
            - lib/cb/criteria/application/resume.rb
         | 
| 219 | 
            +
            - lib/cb/criteria/application/update.rb
         | 
| 220 | 
            +
            - lib/cb/criteria/job/details.rb
         | 
| 221 | 
            +
            - lib/cb/criteria/resumes/get_by_hash.rb
         | 
| 227 222 | 
             
            - lib/cb/criteria/spot/retrieve.rb
         | 
| 228 | 
            -
            - lib/cb/criteria/user/delete.rb
         | 
| 229 223 | 
             
            - lib/cb/criteria/user/change_password.rb
         | 
| 230 | 
            -
            - lib/cb/criteria/ | 
| 231 | 
            -
            - lib/cb/responses/anonymous_saved_search/delete.rb
         | 
| 232 | 
            -
            - lib/cb/responses/anonymous_saved_search/create.rb
         | 
| 233 | 
            -
            - lib/cb/responses/application.rb
         | 
| 234 | 
            -
            - lib/cb/responses/metadata.rb
         | 
| 235 | 
            -
            - lib/cb/responses/data_list/state.rb
         | 
| 236 | 
            -
            - lib/cb/responses/job/singular.rb
         | 
| 237 | 
            -
            - lib/cb/responses/job/search.rb
         | 
| 238 | 
            -
            - lib/cb/responses/application/application_form.rb
         | 
| 239 | 
            -
            - lib/cb/responses/spot/retrieve_response.rb
         | 
| 240 | 
            -
            - lib/cb/responses/email_subscription/response.rb
         | 
| 241 | 
            -
            - lib/cb/responses/Recommendation/recommendations.rb
         | 
| 242 | 
            -
            - lib/cb/responses/industry/search.rb
         | 
| 243 | 
            -
            - lib/cb/responses/api_response.rb
         | 
| 244 | 
            -
            - lib/cb/responses/user/check_existing.rb
         | 
| 245 | 
            -
            - lib/cb/responses/user/delete.rb
         | 
| 246 | 
            -
            - lib/cb/responses/user/change_password.rb
         | 
| 247 | 
            -
            - lib/cb/responses/user/temporary_password.rb
         | 
| 248 | 
            -
            - lib/cb/responses/user/retrieve.rb
         | 
| 249 | 
            -
            - lib/cb/responses/work_status/list.rb
         | 
| 250 | 
            -
            - lib/cb/responses/timing.rb
         | 
| 251 | 
            -
            - lib/cb/responses/category/search.rb
         | 
| 252 | 
            -
            - lib/cb/responses/application_external/submit_application.rb
         | 
| 253 | 
            -
            - lib/cb/responses/saved_search/list.rb
         | 
| 254 | 
            -
            - lib/cb/responses/saved_search/singular.rb
         | 
| 255 | 
            -
            - lib/cb/responses/saved_search/delete.rb
         | 
| 256 | 
            -
            - lib/cb/responses/saved_search/update.rb
         | 
| 257 | 
            -
            - lib/cb/responses/saved_search/retrieve.rb
         | 
| 258 | 
            -
            - lib/cb/responses/employee_types/search.rb
         | 
| 259 | 
            -
            - lib/cb/responses/errors.rb
         | 
| 260 | 
            -
            - lib/cb/responses/company/find.rb
         | 
| 261 | 
            -
            - lib/cb/responses/data_lists/resume_data_list.rb
         | 
| 262 | 
            -
            - lib/cb/responses/resumes/resume.rb
         | 
| 263 | 
            -
            - lib/cb/responses/resumes/resume_list.rb
         | 
| 264 | 
            -
            - lib/cb/responses/resumes/resume_document.rb
         | 
| 265 | 
            -
            - lib/cb/responses/resumes/language_codes.rb
         | 
| 266 | 
            -
            - lib/cb/responses/education/get.rb
         | 
| 224 | 
            +
            - lib/cb/criteria/user/delete.rb
         | 
| 267 225 | 
             
            - lib/cb/exceptions.rb
         | 
| 268 | 
            -
            - lib/cb/ | 
| 226 | 
            +
            - lib/cb/models/api_call_model.rb
         | 
| 269 227 | 
             
            - lib/cb/models/api_response_model.rb
         | 
| 270 | 
            -
            - lib/cb/models/implementations/job_branding.rb
         | 
| 271 228 | 
             
            - lib/cb/models/implementations/application.rb
         | 
| 272 | 
            -
            - lib/cb/models/implementations/resume.rb
         | 
| 273 | 
            -
            - lib/cb/models/implementations/application/resume.rb
         | 
| 274 | 
            -
            - lib/cb/models/implementations/application/form.rb
         | 
| 275 229 | 
             
            - lib/cb/models/implementations/application/cover_letter.rb
         | 
| 230 | 
            +
            - lib/cb/models/implementations/application/form.rb
         | 
| 276 231 | 
             
            - lib/cb/models/implementations/application/response.rb
         | 
| 277 | 
            -
            - lib/cb/models/implementations/ | 
| 278 | 
            -
            - lib/cb/models/implementations/job.rb
         | 
| 279 | 
            -
            - lib/cb/models/implementations/collapsed_job_results.rb
         | 
| 280 | 
            -
            - lib/cb/models/implementations/user.rb
         | 
| 281 | 
            -
            - lib/cb/models/implementations/job_results.rb
         | 
| 282 | 
            -
            - lib/cb/models/implementations/education.rb
         | 
| 283 | 
            -
            - lib/cb/models/implementations/industry.rb
         | 
| 232 | 
            +
            - lib/cb/models/implementations/application/resume.rb
         | 
| 284 233 | 
             
            - lib/cb/models/implementations/application_external.rb
         | 
| 285 | 
            -
            - lib/cb/models/implementations/ | 
| 286 | 
            -
            - lib/cb/models/implementations/employee_type.rb
         | 
| 287 | 
            -
            - lib/cb/models/implementations/resume_document.rb
         | 
| 234 | 
            +
            - lib/cb/models/implementations/branding/media.rb
         | 
| 288 235 | 
             
            - lib/cb/models/implementations/branding/section.rb
         | 
| 289 | 
            -
            - lib/cb/models/implementations/branding/ | 
| 290 | 
            -
            - lib/cb/models/implementations/branding/styles/content.rb
         | 
| 291 | 
            -
            - lib/cb/models/implementations/branding/styles/headings.rb
         | 
| 292 | 
            -
            - lib/cb/models/implementations/branding/styles/page.rb
         | 
| 293 | 
            -
            - lib/cb/models/implementations/branding/styles/container.rb
         | 
| 236 | 
            +
            - lib/cb/models/implementations/branding/style.rb
         | 
| 294 237 | 
             
            - lib/cb/models/implementations/branding/styles/base.rb
         | 
| 295 | 
            -
            - lib/cb/models/implementations/branding/styles/css_adapter.rb
         | 
| 296 238 | 
             
            - lib/cb/models/implementations/branding/styles/buttons.rb
         | 
| 297 239 | 
             
            - lib/cb/models/implementations/branding/styles/company_info.rb
         | 
| 298 | 
            -
            - lib/cb/models/implementations/branding/ | 
| 299 | 
            -
            - lib/cb/models/implementations/branding/ | 
| 240 | 
            +
            - lib/cb/models/implementations/branding/styles/container.rb
         | 
| 241 | 
            +
            - lib/cb/models/implementations/branding/styles/content.rb
         | 
| 242 | 
            +
            - lib/cb/models/implementations/branding/styles/css_adapter.rb
         | 
| 243 | 
            +
            - lib/cb/models/implementations/branding/styles/headings.rb
         | 
| 244 | 
            +
            - lib/cb/models/implementations/branding/styles/job_details.rb
         | 
| 245 | 
            +
            - lib/cb/models/implementations/branding/styles/page.rb
         | 
| 300 246 | 
             
            - lib/cb/models/implementations/branding/widget.rb
         | 
| 301 | 
            -
            - lib/cb/models/implementations/company.rb
         | 
| 302 | 
            -
            - lib/cb/models/implementations/work_status.rb
         | 
| 303 247 | 
             
            - lib/cb/models/implementations/category.rb
         | 
| 304 | 
            -
            - lib/cb/models/implementations/ | 
| 305 | 
            -
            - lib/cb/models/implementations/ | 
| 306 | 
            -
            - lib/cb/models/implementations/ | 
| 248 | 
            +
            - lib/cb/models/implementations/collapsed_job_results.rb
         | 
| 249 | 
            +
            - lib/cb/models/implementations/collapsed_jobs.rb
         | 
| 250 | 
            +
            - lib/cb/models/implementations/company.rb
         | 
| 307 251 | 
             
            - lib/cb/models/implementations/data_lists/resume_data_list.rb
         | 
| 252 | 
            +
            - lib/cb/models/implementations/education.rb
         | 
| 308 253 | 
             
            - lib/cb/models/implementations/email_subscription.rb
         | 
| 254 | 
            +
            - lib/cb/models/implementations/employee_type.rb
         | 
| 255 | 
            +
            - lib/cb/models/implementations/industry.rb
         | 
| 256 | 
            +
            - lib/cb/models/implementations/job.rb
         | 
| 257 | 
            +
            - lib/cb/models/implementations/job_branding.rb
         | 
| 258 | 
            +
            - lib/cb/models/implementations/job_results.rb
         | 
| 259 | 
            +
            - lib/cb/models/implementations/recommended_job.rb
         | 
| 260 | 
            +
            - lib/cb/models/implementations/resume.rb
         | 
| 261 | 
            +
            - lib/cb/models/implementations/resume_document.rb
         | 
| 262 | 
            +
            - lib/cb/models/implementations/resume_listing.rb
         | 
| 263 | 
            +
            - lib/cb/models/implementations/resumes/country_code.rb
         | 
| 264 | 
            +
            - lib/cb/models/implementations/resumes/education.rb
         | 
| 265 | 
            +
            - lib/cb/models/implementations/resumes/government_and_military.rb
         | 
| 266 | 
            +
            - lib/cb/models/implementations/resumes/language_code.rb
         | 
| 309 267 | 
             
            - lib/cb/models/implementations/resumes/relocation.rb
         | 
| 310 268 | 
             
            - lib/cb/models/implementations/resumes/salary_information.rb
         | 
| 311 | 
            -
            - lib/cb/models/implementations/resumes/language_code.rb
         | 
| 312 | 
            -
            - lib/cb/models/implementations/resumes/education.rb
         | 
| 313 | 
            -
            - lib/cb/models/implementations/resumes/country_code.rb
         | 
| 314 269 | 
             
            - lib/cb/models/implementations/resumes/skills_and_qualifications.rb
         | 
| 315 270 | 
             
            - lib/cb/models/implementations/resumes/work_experience.rb
         | 
| 316 | 
            -
            - lib/cb/models/implementations/ | 
| 317 | 
            -
            - lib/cb/models/implementations/ | 
| 318 | 
            -
            - lib/cb/models/implementations/ | 
| 319 | 
            -
            - lib/cb/models/ | 
| 320 | 
            -
            - lib/cb/ | 
| 271 | 
            +
            - lib/cb/models/implementations/saved_search.rb
         | 
| 272 | 
            +
            - lib/cb/models/implementations/spot.rb
         | 
| 273 | 
            +
            - lib/cb/models/implementations/state.rb
         | 
| 274 | 
            +
            - lib/cb/models/implementations/talent_network.rb
         | 
| 275 | 
            +
            - lib/cb/models/implementations/user.rb
         | 
| 276 | 
            +
            - lib/cb/models/implementations/work_status.rb
         | 
| 321 277 | 
             
            - lib/cb/requests/anonymous_saved_search/create.rb
         | 
| 322 | 
            -
            - lib/cb/requests/ | 
| 323 | 
            -
            - lib/cb/requests/application/get.rb
         | 
| 324 | 
            -
            - lib/cb/requests/application/form.rb
         | 
| 278 | 
            +
            - lib/cb/requests/anonymous_saved_search/delete.rb
         | 
| 325 279 | 
             
            - lib/cb/requests/application/create.rb
         | 
| 280 | 
            +
            - lib/cb/requests/application/form.rb
         | 
| 281 | 
            +
            - lib/cb/requests/application/get.rb
         | 
| 282 | 
            +
            - lib/cb/requests/application/update.rb
         | 
| 326 283 | 
             
            - lib/cb/requests/application/utils.rb
         | 
| 327 | 
            -
            - lib/cb/requests/ | 
| 328 | 
            -
            - lib/cb/requests/email_subscription/retrieve.rb
         | 
| 329 | 
            -
            - lib/cb/requests/user/check_existing.rb
         | 
| 330 | 
            -
            - lib/cb/requests/user/delete.rb
         | 
| 331 | 
            -
            - lib/cb/requests/user/change_password.rb
         | 
| 332 | 
            -
            - lib/cb/requests/user/temporary_password.rb
         | 
| 333 | 
            -
            - lib/cb/requests/user/retrieve.rb
         | 
| 284 | 
            +
            - lib/cb/requests/application_external/submit_application.rb
         | 
| 334 285 | 
             
            - lib/cb/requests/base.rb
         | 
| 335 | 
            -
            - lib/cb/requests/work_status/list.rb
         | 
| 336 | 
            -
            - lib/cb/requests/recommendations/resume_recs.rb
         | 
| 337 286 | 
             
            - lib/cb/requests/category/search.rb
         | 
| 338 | 
            -
            - lib/cb/requests/application_external/submit_application.rb
         | 
| 339 287 | 
             
            - lib/cb/requests/company/find.rb
         | 
| 340 | 
            -
            - lib/cb/requests/data_lists/languages.rb
         | 
| 341 288 | 
             
            - lib/cb/requests/data_lists/countries.rb
         | 
| 342 289 | 
             
            - lib/cb/requests/data_lists/data_list_base.rb
         | 
| 343 | 
            -
            - lib/cb/requests/data_lists/state.rb
         | 
| 344 290 | 
             
            - lib/cb/requests/data_lists/desired_job_type.rb
         | 
| 345 291 | 
             
            - lib/cb/requests/data_lists/education_codes.rb
         | 
| 346 | 
            -
            - lib/cb/requests/ | 
| 347 | 
            -
            - lib/cb/requests/ | 
| 292 | 
            +
            - lib/cb/requests/data_lists/languages.rb
         | 
| 293 | 
            +
            - lib/cb/requests/data_lists/state.rb
         | 
| 294 | 
            +
            - lib/cb/requests/education/get.rb
         | 
| 295 | 
            +
            - lib/cb/requests/email_subscription/modify.rb
         | 
| 296 | 
            +
            - lib/cb/requests/email_subscription/retrieve.rb
         | 
| 297 | 
            +
            - lib/cb/requests/recommendations/resume_recs.rb
         | 
| 348 298 | 
             
            - lib/cb/requests/resumes/delete.rb
         | 
| 349 | 
            -
            - lib/cb/requests/resumes/post.rb
         | 
| 350 299 | 
             
            - lib/cb/requests/resumes/get.rb
         | 
| 351 300 | 
             
            - lib/cb/requests/resumes/language_codes.rb
         | 
| 352 | 
            -
            - lib/cb/requests/ | 
| 353 | 
            -
            - lib/cb/ | 
| 354 | 
            -
            - lib/cb/ | 
| 355 | 
            -
            - lib/cb/ | 
| 356 | 
            -
            - lib/cb/ | 
| 357 | 
            -
            - lib/cb/ | 
| 358 | 
            -
            - lib/cb/ | 
| 359 | 
            -
            - lib/cb/ | 
| 360 | 
            -
            - lib/cb/ | 
| 361 | 
            -
            - lib/cb/ | 
| 362 | 
            -
            - lib/cb/ | 
| 363 | 
            -
            - lib/cb/ | 
| 364 | 
            -
            - lib/cb/ | 
| 365 | 
            -
            - lib/cb/ | 
| 366 | 
            -
            - lib/cb/ | 
| 367 | 
            -
            - lib/cb/ | 
| 368 | 
            -
            - lib/cb/ | 
| 369 | 
            -
            - lib/cb/ | 
| 370 | 
            -
            - lib/cb/ | 
| 301 | 
            +
            - lib/cb/requests/resumes/list.rb
         | 
| 302 | 
            +
            - lib/cb/requests/resumes/post.rb
         | 
| 303 | 
            +
            - lib/cb/requests/resumes/put.rb
         | 
| 304 | 
            +
            - lib/cb/requests/user/change_password.rb
         | 
| 305 | 
            +
            - lib/cb/requests/user/check_existing.rb
         | 
| 306 | 
            +
            - lib/cb/requests/user/delete.rb
         | 
| 307 | 
            +
            - lib/cb/requests/user/retrieve.rb
         | 
| 308 | 
            +
            - lib/cb/requests/user/temporary_password.rb
         | 
| 309 | 
            +
            - lib/cb/requests/work_status/list.rb
         | 
| 310 | 
            +
            - lib/cb/responses/Recommendation/recommendations.rb
         | 
| 311 | 
            +
            - lib/cb/responses/anonymous_saved_search/create.rb
         | 
| 312 | 
            +
            - lib/cb/responses/anonymous_saved_search/delete.rb
         | 
| 313 | 
            +
            - lib/cb/responses/api_response.rb
         | 
| 314 | 
            +
            - lib/cb/responses/application.rb
         | 
| 315 | 
            +
            - lib/cb/responses/application/application_form.rb
         | 
| 316 | 
            +
            - lib/cb/responses/application_external/submit_application.rb
         | 
| 317 | 
            +
            - lib/cb/responses/category/search.rb
         | 
| 318 | 
            +
            - lib/cb/responses/company/find.rb
         | 
| 319 | 
            +
            - lib/cb/responses/data_list/state.rb
         | 
| 320 | 
            +
            - lib/cb/responses/data_lists/resume_data_list.rb
         | 
| 321 | 
            +
            - lib/cb/responses/education/get.rb
         | 
| 322 | 
            +
            - lib/cb/responses/email_subscription/response.rb
         | 
| 323 | 
            +
            - lib/cb/responses/employee_types/search.rb
         | 
| 324 | 
            +
            - lib/cb/responses/errors.rb
         | 
| 325 | 
            +
            - lib/cb/responses/industry/search.rb
         | 
| 326 | 
            +
            - lib/cb/responses/job/search.rb
         | 
| 327 | 
            +
            - lib/cb/responses/job/singular.rb
         | 
| 328 | 
            +
            - lib/cb/responses/metadata.rb
         | 
| 329 | 
            +
            - lib/cb/responses/resumes/language_codes.rb
         | 
| 330 | 
            +
            - lib/cb/responses/resumes/resume.rb
         | 
| 331 | 
            +
            - lib/cb/responses/resumes/resume_document.rb
         | 
| 332 | 
            +
            - lib/cb/responses/resumes/resume_list.rb
         | 
| 333 | 
            +
            - lib/cb/responses/saved_search/delete.rb
         | 
| 334 | 
            +
            - lib/cb/responses/saved_search/list.rb
         | 
| 335 | 
            +
            - lib/cb/responses/saved_search/retrieve.rb
         | 
| 336 | 
            +
            - lib/cb/responses/saved_search/singular.rb
         | 
| 337 | 
            +
            - lib/cb/responses/saved_search/update.rb
         | 
| 338 | 
            +
            - lib/cb/responses/spot/retrieve_response.rb
         | 
| 339 | 
            +
            - lib/cb/responses/timing.rb
         | 
| 340 | 
            +
            - lib/cb/responses/user/change_password.rb
         | 
| 341 | 
            +
            - lib/cb/responses/user/check_existing.rb
         | 
| 342 | 
            +
            - lib/cb/responses/user/delete.rb
         | 
| 343 | 
            +
            - lib/cb/responses/user/retrieve.rb
         | 
| 344 | 
            +
            - lib/cb/responses/user/temporary_password.rb
         | 
| 345 | 
            +
            - lib/cb/responses/work_status/list.rb
         | 
| 346 | 
            +
            - lib/cb/utils/api.rb
         | 
| 347 | 
            +
            - lib/cb/utils/console_observer.rb
         | 
| 371 348 | 
             
            - lib/cb/utils/country.rb
         | 
| 372 | 
            -
            - lib/cb/utils/ | 
| 349 | 
            +
            - lib/cb/utils/fluid_attributes.rb
         | 
| 373 350 | 
             
            - lib/cb/utils/meta_values.rb
         | 
| 374 | 
            -
            - lib/cb/utils/ | 
| 375 | 
            -
            - lib/cb/utils/api.rb
         | 
| 351 | 
            +
            - lib/cb/utils/response_array_extractor.rb
         | 
| 376 352 | 
             
            - lib/cb/utils/response_map.rb
         | 
| 377 | 
            -
            - lib/cb/utils/ | 
| 353 | 
            +
            - lib/cb/utils/validator.rb
         | 
| 354 | 
            +
            - lib/cb/version.rb
         | 
| 378 355 | 
             
            - lib/tasks/cb.rake
         | 
| 379 356 | 
             
            - lib/tasks/doc.rake
         | 
| 380 | 
            -
            - CHANGELOG.md
         | 
| 381 | 
            -
            - README.md
         | 
| 382 357 | 
             
            homepage: http://api.careerbuilder.com
         | 
| 383 358 | 
             
            licenses:
         | 
| 384 359 | 
             
            - MIT
         | 
| 360 | 
            +
            metadata: {}
         | 
| 385 361 | 
             
            post_install_message: 
         | 
| 386 362 | 
             
            rdoc_options: []
         | 
| 387 363 | 
             
            require_paths:
         | 
| 388 364 | 
             
            - lib
         | 
| 389 365 | 
             
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 390 | 
            -
              none: false
         | 
| 391 366 | 
             
              requirements:
         | 
| 392 | 
            -
              - -  | 
| 367 | 
            +
              - - '>='
         | 
| 393 368 | 
             
                - !ruby/object:Gem::Version
         | 
| 394 369 | 
             
                  version: '0'
         | 
| 395 370 | 
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 396 | 
            -
              none: false
         | 
| 397 371 | 
             
              requirements:
         | 
| 398 | 
            -
              - -  | 
| 372 | 
            +
              - - '>='
         | 
| 399 373 | 
             
                - !ruby/object:Gem::Version
         | 
| 400 374 | 
             
                  version: '0'
         | 
| 401 375 | 
             
            requirements: []
         | 
| 402 376 | 
             
            rubyforge_project: 
         | 
| 403 | 
            -
            rubygems_version:  | 
| 377 | 
            +
            rubygems_version: 2.2.2
         | 
| 404 378 | 
             
            signing_key: 
         | 
| 405 | 
            -
            specification_version:  | 
| 379 | 
            +
            specification_version: 4
         | 
| 406 380 | 
             
            summary: Ruby wrapper around Careerbuilder Public API.
         | 
| 407 381 | 
             
            test_files: []
         |