jess 0.4.0 → 0.5.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
  SHA256:
3
- metadata.gz: 36a2ecd8c27f51eb1cad14d0cf14b18d54ec301eb160ae5dec87668e5c44bb75
4
- data.tar.gz: fbf618a240b264e884511d5b77f6799b487eab72210fdcee30a2dbcef1693b83
3
+ metadata.gz: 9ad2689108ccc9f42731b05900c66b3b4d37fba39186312d9d74d6f84bea4a81
4
+ data.tar.gz: 28f5c1e8e7f63b29a64e0c728efa711b9a969fb3886698e97cd21b99ba012f5b
5
5
  SHA512:
6
- metadata.gz: 72efc59c335fc190672a20a35503c12b231fda070d6a0c4649d8e4a4c80160ceb603090433b1b808784fa5c8c88f89284669df3a191762654ddba1f1bc1a457f
7
- data.tar.gz: 6086728baabc85e915e6b36b8204739cfc3126088bc2dc392053313d0f1e8d564861e5137e94a288dc5d56abc23aedaab1d013f2868b7a7c325b739f1616394c
6
+ metadata.gz: fed83f8057f2ffc7379c8540b9ee117776b59340f7e3e781684058434102d70bd15bab2cc4295cd91da14547e1d9406b286fe46d5f9671df8330c7b20b8616e4
7
+ data.tar.gz: f03cb31a20cb635a550a050520ee42b5a50f71461bcafba70ededb4f1135085adf0d65952a8d00fa2fc132b6f5de6ede6a0575120cd1033a68c34eeea4f39d46
data/CHANGELOG.md CHANGED
@@ -8,6 +8,10 @@ Jess is in a pre-1.0 state. This means that its APIs and behavior are subject to
8
8
 
9
9
  * Your contribution here!
10
10
 
11
+ ## [0.5.0][] (2018-03-18)
12
+
13
+ * `to_s` now produces the same output as `inspect` for `Computer` and `MobileDevice`
14
+
11
15
  ## [0.4.0][] (2018-01-03)
12
16
 
13
17
  * `extension_attributes` now responds to `_json` like other objects
@@ -25,7 +29,8 @@ Jess is in a pre-1.0 state. This means that its APIs and behavior are subject to
25
29
  * Initial release
26
30
 
27
31
  [Semver]: http://semver.org
28
- [Unreleased]: https://github.com/mattbrictson/jess/compare/v0.4.0...HEAD
32
+ [Unreleased]: https://github.com/mattbrictson/jess/compare/v0.5.0...HEAD
33
+ [0.5.0]: https://github.com/mattbrictson/jess/compare/v0.4.0...v0.5.0
29
34
  [0.4.0]: https://github.com/mattbrictson/jess/compare/v0.3.0...v0.4.0
30
35
  [0.3.0]: https://github.com/mattbrictson/jess/compare/v0.2.0...v0.3.0
31
36
  [0.2.0]: https://github.com/mattbrictson/jess/compare/v0.1.0...v0.2.0
data/lib/jess/computer.rb CHANGED
@@ -15,5 +15,6 @@ module Jess
15
15
  def inspect
16
16
  "Jess::Computer<##{id}, #{name}>"
17
17
  end
18
+ alias to_s inspect
18
19
  end
19
20
  end
@@ -15,5 +15,6 @@ module Jess
15
15
  def inspect
16
16
  "Jess::MobileDevice<##{id}, #{name}>"
17
17
  end
18
+ alias to_s inspect
18
19
  end
19
20
  end
data/lib/jess/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jess
2
- VERSION = "0.4.0".freeze
2
+ VERSION = "0.5.0".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: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-01-03 00:00:00.000000000 Z
11
+ date: 2018-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: awesome_print
@@ -190,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
190
190
  version: '0'
191
191
  requirements: []
192
192
  rubyforge_project:
193
- rubygems_version: 2.7.4
193
+ rubygems_version: 2.7.6
194
194
  signing_key:
195
195
  specification_version: 4
196
196
  summary: Lightweight, unofficial client for the JAMF Software Server (JSS) API