sensu-json 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d71ac5cd61fae3fa7d70aa641dbddb4cef5828d9
4
- data.tar.gz: d63c376a21897c6b5a19c13143a6e0813b9157b6
3
+ metadata.gz: d2b0cada9ad98d9b337d0ae6a355f7d4c730446f
4
+ data.tar.gz: 701050fbf499907416a228eecab0c22b0785c906
5
5
  SHA512:
6
- metadata.gz: 7a8f27abd7e39f4a7bbf9fbc883bf5c548ff340fff9e959c8ad7179d6f95f64ce327b674ae8df8ee790231b85e092137364d873cda2d1649ba80b12512a62908
7
- data.tar.gz: c077f7ef60e6ad64c569b0cc2e398337a9d2253cca4a6dcb8bd10ab394775b1d649ae0bfc7b8f1080089d99dc45f5d22e821ef11a48579dcfe4085a59b11aaab
6
+ metadata.gz: 4c9b93aefc8386e1075c4f1eeefc8e052066e04ac89bd760ff44f6f8c8c7109084855c61adb1bf86f751aedd5d521dbb163859bf0a542d92ced422294f47b684
7
+ data.tar.gz: ee9137d704938c1ff03f384cbad7a0f6e19441672c401c5080e2063af4025d9e8200e7ace4dd73b4197321b9e35b7d04570e3b237712da0efc8530899cd4f366
data/.travis.yml CHANGED
@@ -1,4 +1,12 @@
1
+ sudo: false
1
2
  language: ruby
2
3
  rvm:
4
+ - 2.0.0
5
+ - 2.1.0
6
+ - 2.2.0
3
7
  - 2.2.3
4
- before_install: gem install bundler -v 1.10.6
8
+ - 2.3.0
9
+ - jruby-1.7.23
10
+ notifications:
11
+ irc:
12
+ - "irc.freenode.net#sensu"
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. The appropriate JSON parser will be
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "sensu-json"
5
- spec.version = "1.0.0"
5
+ spec.version = "1.1.0"
6
6
  spec.authors = ["Sean Porter"]
7
7
  spec.email = ["portertech@gmail.com"]
8
8
  spec.summary = "The Sensu JSON parser abstraction library"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-json
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Porter