sensu-json 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +9 -1
- data/lib/sensu/json.rb +4 -1
- data/sensu-json.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d2b0cada9ad98d9b337d0ae6a355f7d4c730446f
|
4
|
+
data.tar.gz: 701050fbf499907416a228eecab0c22b0785c906
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c9b93aefc8386e1075c4f1eeefc8e052066e04ac89bd760ff44f6f8c8c7109084855c61adb1bf86f751aedd5d521dbb163859bf0a542d92ced422294f47b684
|
7
|
+
data.tar.gz: ee9137d704938c1ff03f384cbad7a0f6e19441672c401c5080e2063af4025d9e8200e7ace4dd73b4197321b9e35b7d04570e3b237712da0efc8530899cd4f366
|
data/.travis.yml
CHANGED
data/lib/sensu/json.rb
CHANGED
@@ -7,7 +7,8 @@ module Sensu
|
|
7
7
|
# The Sensu JSON parser abstraction API.
|
8
8
|
class << self
|
9
9
|
# Set up the JSON parser. This method must be called before any
|
10
|
-
# attempt to use the parser.
|
10
|
+
# attempt to use the parser. This method is currently called at
|
11
|
+
# the bottom of this file. The appropriate JSON parser will be
|
11
12
|
# loaded for the current platform.
|
12
13
|
#
|
13
14
|
# @return [Object] parser.
|
@@ -44,3 +45,5 @@ module Sensu
|
|
44
45
|
end
|
45
46
|
end
|
46
47
|
end
|
48
|
+
|
49
|
+
Sensu::JSON.setup!
|
data/sensu-json.gemspec
CHANGED