cb-api 20.1.0 → 20.1.1

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: f57fd204f120fbc21c912ccc93a16b0bbd59a7a0
4
- data.tar.gz: 9f75f19153218b1a2d50db4a131f4acba2b5061f
3
+ metadata.gz: ca4880b64adf005d1e51e49d9bead282fccb83e5
4
+ data.tar.gz: fc5fb46ddf058bdabec0110d8b6c19b6318b4e17
5
5
  SHA512:
6
- metadata.gz: 84dc11322da894ee4ec3ae1d1583e1e80180a2f6695d9471f887f04d8c75842082e00937cb1239109810fdc3c0f80994224a14fda304e8f2f6cc89b13f2cfadb
7
- data.tar.gz: da7ae42ba24ac67126f337b374b75de93f6913e1ca86e6595f8b714706de1475980bb2f91ac032b8a26d9a3559b8ce8cb33c332ad0e4fd759ee78e5264b2b390
6
+ metadata.gz: 0b38c28f72f14b3d278814bcc01eb5afb829398ef978adb40bafcf60486c59f484eca283f536a7b818d7528157bb7d211ed4bf80e73fa4eefa5cc6776c4b1def
7
+ data.tar.gz: 159543938ac7f192f7a6d7045db7ffaaad6ab2a6a24ad9d383457299ef6880fa5b969ea8005a2430dc8f4f3775d0d1784a88f098c2fabf5065da6bf5f4b5c462
@@ -2,6 +2,7 @@ Version History
2
2
  ====
3
3
  * All Version bumps are required to update this file as well!!
4
4
  ----
5
+ * 20.1.1 Having nil reponses behave more like we did pre ruby 2.2 so as not to break downstream peeps
5
6
  * 20.1.0 Remove Migration ID field from resume listing model.
6
7
  * 20.0.0 Refactoring of the clients. Breaking changes to AnonSavedSearch, EmployeeTypes, SavedSearch
7
8
  * 19.1.1 No functional differences, some code cleanup
@@ -15,9 +15,16 @@ module Cb
15
15
  module Utils
16
16
  class NilResponse
17
17
  def initialize ;end
18
+
18
19
  def nil?
19
20
  true
20
21
  end
22
+
23
+ # We used to monkey patch Nil to respond to all methods on the api client
24
+ def method_missing(m, *args, &block)
25
+ return nil
26
+ end
27
+
21
28
  end
22
29
  end
23
30
  end
@@ -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.1.0'
12
+ VERSION = '20.1.1'
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: 20.1.0
4
+ version: 20.1.1
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: 2016-03-03 00:00:00.000000000 Z
11
+ date: 2016-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty