jess 1.1.2 → 1.1.3

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
  SHA256:
3
- metadata.gz: 8c1f2b2768c6dd2b43da546c3a488515b0f8717d13a7542e9ae300be498a21a0
4
- data.tar.gz: 9017e596dd4f7e9b457474deaca58981e4f338ed5e22c1f041b93274e11cc3c4
3
+ metadata.gz: ab8bfb56de287cb6f65b5e970b622884853b23edd555e35ea181edd453915965
4
+ data.tar.gz: 5a444298b8e278be3086828ef09227e8fe1437cf623f2cd1fae1c92e8e9a8ea2
5
5
  SHA512:
6
- metadata.gz: 42c7307ff7ec5840f0a2753cb8ebbf9b6a66c922a2fe619195a341402fcdd899a15fd0aa34df09a7bd2bb5e1cb725b104f921bb0b2928450ddf7206b19905c7b
7
- data.tar.gz: 2e0764b8579cfc647af0b4732c2f035245ddd165d7db0393cee0cf164aeb7c8a524dab142295ca91809bcdbad508fd8c84d65c57a1be02f17c75244612970121
6
+ metadata.gz: 23a1049eb30f61080c02ca229e1cf9c4b185a99b40d9a9a6b14bd9a476ba888468a340ea6d53dc8c6e8e7cb68b78a57c149cc80cd1e3e8b0d571d5ce13a8444a
7
+ data.tar.gz: e091f57dc5e6edf8a613bfaf021e2ee073ac60a3363b18a8d77eabde8724d089ec8918950fc481f3b2f367d634942c4ad7d6f9317c0fd5b60410c9be28d9744f
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2020 Matt Brictson
3
+ Copyright (c) 2021 Matt Brictson
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Jess
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/jess.svg)](http://badge.fury.io/rb/jess)
4
- [![Build Status](https://travis-ci.org/mattbrictson/jess.svg?branch=main)](https://travis-ci.org/mattbrictson/jess)
4
+ [![Build Status](https://circleci.com/gh/mattbrictson/jess/tree/main.svg?style=shield)](https://app.circleci.com/pipelines/github/mattbrictson/jess?branch=main)
5
5
  [![Code Climate](https://codeclimate.com/github/mattbrictson/jess/badges/gpa.svg)](https://codeclimate.com/github/mattbrictson/jess)
6
6
 
7
7
  **Jess is an extremely lightweight, read-only client for the JAMF Software Server (JSS) API.**
data/lib/jess/resource.rb CHANGED
@@ -34,7 +34,7 @@ module Jess
34
34
  when Hash
35
35
  Resource.new(json)
36
36
  when Array
37
- json.map(&method(:_as_resource)).freeze
37
+ json.map { |j| _as_resource(j) }.freeze
38
38
  else
39
39
  json.freeze
40
40
  end
data/lib/jess/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jess
2
- VERSION = "1.1.2".freeze
2
+ VERSION = "1.1.3".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jess
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-11-04 00:00:00.000000000 Z
11
+ date: 2021-02-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -55,7 +55,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
55
55
  - !ruby/object:Gem::Version
56
56
  version: '0'
57
57
  requirements: []
58
- rubygems_version: 3.1.4
58
+ rubygems_version: 3.2.7
59
59
  signing_key:
60
60
  specification_version: 4
61
61
  summary: Lightweight, unofficial client for the JAMF Software Server (JSS) API