hinoki 1.3.1 → 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/hinoki-1.3.1.gem +0 -0
- data/lib/hinoki/clients.rb +2 -2
- data/lib/hinoki/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd0fdc302f21f48b960dc45a9ca268ce57eb3e41
|
4
|
+
data.tar.gz: 64f74f63ccbbfa0f4842607575a274c325780f7d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0035f6d4bd22bab662bcd8ea9cb3ee0f02e8a5edbf77f09d24351f3e375772338dc8f32a686cbd75a0c54dbb2845982584f5b3e2835beace0ed77b97702cb39d
|
7
|
+
data.tar.gz: 899024dddd6c72f7c6c082efd60eb5d44fb0d2dae2a810fde961341dba76d283aec36178a53282d4b9b313b0d37aea6eba8e1e9cad871f0e90d672495babd871
|
data/hinoki-1.3.1.gem
ADDED
Binary file
|
data/lib/hinoki/clients.rb
CHANGED
@@ -8,8 +8,8 @@ class Hinoki
|
|
8
8
|
# Retrieves list of all clients
|
9
9
|
def self.all(limit=nil, offset=nil)
|
10
10
|
url = "/clients"
|
11
|
-
if limit then url.
|
12
|
-
if offset then url.
|
11
|
+
if limit then url.concat("?limit=#{limit}") end
|
12
|
+
if offset then url.concat("&offset=#{offset}") end
|
13
13
|
|
14
14
|
return Hinoki.conn.get(url)
|
15
15
|
end
|
data/lib/hinoki/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hinoki
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jake Davis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-07-
|
11
|
+
date: 2014-07-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A programmatic CLI utility for interacting with the Sensu API
|
14
14
|
email: jake.davis5989@gmail.com
|
@@ -18,6 +18,7 @@ extra_rdoc_files: []
|
|
18
18
|
files:
|
19
19
|
- LICENSE
|
20
20
|
- README.md
|
21
|
+
- hinoki-1.3.1.gem
|
21
22
|
- hinoki.gemspec
|
22
23
|
- lib/hinoki.rb
|
23
24
|
- lib/hinoki/aggregates.rb
|