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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a1aabb20bcfa898e0fa04fb24857ab8e96519a8b
4
- data.tar.gz: b359fa720ef72c4c9e9f6f795e3fd8940fc06fc1
3
+ metadata.gz: cd0fdc302f21f48b960dc45a9ca268ce57eb3e41
4
+ data.tar.gz: 64f74f63ccbbfa0f4842607575a274c325780f7d
5
5
  SHA512:
6
- metadata.gz: 9a5dddd278c78f6087820f84f05445cf97b09d7903c53128ea8dafb1f33ea35051ce72d8f188f62aed47779ba64e8c7d13be7d8dbfa012cc0bedba1f7287ee94
7
- data.tar.gz: 615ceb2fb75c24f49ecdf0afd21a25422d7981aaa0787fcc8ca1e7484250ee40b30b95269aa5f0bae7c33faa7724cc633a2bc301ff808c87914d97e408564b2a
6
+ metadata.gz: 0035f6d4bd22bab662bcd8ea9cb3ee0f02e8a5edbf77f09d24351f3e375772338dc8f32a686cbd75a0c54dbb2845982584f5b3e2835beace0ed77b97702cb39d
7
+ data.tar.gz: 899024dddd6c72f7c6c082efd60eb5d44fb0d2dae2a810fde961341dba76d283aec36178a53282d4b9b313b0d37aea6eba8e1e9cad871f0e90d672495babd871
data/hinoki-1.3.1.gem ADDED
Binary file
@@ -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.append("?limit=#{limit}") end
12
- if offset then url.append("&offset=#{offset}") end
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
@@ -1,5 +1,5 @@
1
1
  # hinoki/version.rb
2
2
 
3
3
  class Hinoki
4
- VERSION = '1.3.1'
4
+ VERSION = '1.3.2'
5
5
  end
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.1
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-23 00:00:00.000000000 Z
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