chef-rabbit 1.0.10 → 1.0.11

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NjE3MjViOWYzZTAwYjIwYjA5ZTFkMDVmMWU4M2IxM2UzMGU1ZDNhYQ==
4
+ MjA1MjVhNmZiZTA3ODc0Yzg1MWQyOTFmZGNiOGJiMGQwNjZlZmE5ZQ==
5
5
  data.tar.gz: !binary |-
6
- MzJmNmY0MGRkNzNmN2I1YTNjMzQ2ZmMwZWRjZWExZTAzNDM1MDNhNw==
6
+ YTk0OWE0MTFlMDgzZWE0ZmEwZjcyMGYzYmQxNmI2OGRhN2Y5N2ZlMQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NWUwYzU2YjY4MWE3NDg1ODBmM2YzNTZiZjhkMWIwMWYzM2U3ODZmNjJiYWVm
10
- Mzg3ZmQ1NWZkYzVjNzBjMGZlZjFiMDI5ZGNkMjU2OTJjMjJkY2M1ZDY3YjZl
11
- Y2E1MWVjNDVkZjllOTkzZWMyMzkxNTNhNDUwZmMwMTBlYTVkZjA=
9
+ YmRmODRjY2I5Njg3OTc5MDg0NmUwNTQ0N2JhZDVkNzY5ZmRlOTY3MThhNWNm
10
+ ZjBjYjM4Y2EyMjVkMDA4OWE4NTEzZTE0YmJjYmNmZWEyNTkxNDExNjFkNjM3
11
+ MmFmNjg5NjVkYmE3YTEyZjkyNzgxYTBlMmZmYmZiNzY2NDQ5Y2I=
12
12
  data.tar.gz: !binary |-
13
- OTJhNTliMTFhNjJmMDVlOTUzODJjMmMzYzg0MTM4ZDI1YmVkYzc0M2UxOTZi
14
- NTdiZTBiMWU3Yzk5YmE2MGQzYzJkOTIxY2I1OGFhNzE2ODBmOTVlZTdjYTNi
15
- MDgyNzc5ZWRjNmUyZTdmMzE5YzRhNzFmNDhkNjM5YzAxZTg4YmU=
13
+ ZTM3MjE2YTQ5NmYwOGMxMWI5MmEyZmI4ZmI0ZjU4NTdiYWU5OGI3YzdhODEy
14
+ OTc0MTk4MWI0NjNjOTcwMWEyNDVjOTE4Y2Q0OTg2MmJmNjkzZGY2ZGYzYTc2
15
+ YTdkNTU1ZWJjNDZiZGNjZWNkYmFjZDNmMjhlYTRhMDkxZGZhNzI=
data/Gemfile CHANGED
@@ -2,3 +2,6 @@ source "http://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in chef-rabbit.gemspec
4
4
  gemspec
5
+
6
+ # Pin to chef 11 / ruby 1.9
7
+ gem 'ohai', '~> 7.0'
data/README.md CHANGED
@@ -78,7 +78,7 @@ end.run_action(:enable)
78
78
 
79
79
  ##LICENSE and AUTHOR:
80
80
 
81
- Copyright 2014 by MTN Sattelite Communications
81
+ Copyright 2014 by MTN Satellite Communications
82
82
 
83
83
  Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
84
84
 
@@ -76,7 +76,7 @@ Some resources report themselves as having updated on every run even if nothing
76
76
 
77
77
  = LICENSE and AUTHOR:
78
78
 
79
- Copyright 2014 by MTN Sattelite Communications
79
+ Copyright 2014 by MTN Satellite Communications
80
80
 
81
81
  Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
82
82
 
data/Rakefile CHANGED
File without changes
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
6
6
  s.name = "chef-rabbit"
7
7
  s.version = Chef::RABBIT::VERSION
8
8
  s.authors = ["MTN Satellite Communications"]
9
- s.email = ["marat.garafutdinov@mtnsart.com"]
9
+ s.email = ["marat.garafutdinov@mtnsat.com"]
10
10
  s.homepage = "https://github.com/MTNSatelliteComm/chef-rabbit"
11
11
  s.summary = %q{Provides a Chef handler which reports run failures and changes to a Rabbit server.}
12
12
  s.description = File.read("README.rdoc")
@@ -19,5 +19,5 @@ Gem::Specification.new do |s|
19
19
  s.require_paths = ["lib"]
20
20
 
21
21
  s.add_dependency "bunny"
22
- s.add_dependency "chef"
22
+ s.add_dependency "chef", "~> 11.0"
23
23
  end
File without changes
@@ -1,6 +1,6 @@
1
1
  #--
2
2
 
3
- # Copyright 2014 by MTN Sattelite Communications
3
+ # Copyright 2014 by MTN Satellite Communications
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the "Software"), to
@@ -23,6 +23,6 @@
23
23
 
24
24
  class Chef
25
25
  module RABBIT
26
- VERSION = "1.0.10"
26
+ VERSION = "1.0.11"
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-rabbit
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.10
4
+ version: 1.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - MTN Satellite Communications
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-05 00:00:00.000000000 Z
11
+ date: 2014-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bunny
@@ -28,16 +28,16 @@ dependencies:
28
28
  name: chef
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ! '>='
31
+ - - ~>
32
32
  - !ruby/object:Gem::Version
33
- version: '0'
33
+ version: '11.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ! '>='
38
+ - - ~>
39
39
  - !ruby/object:Gem::Version
40
- version: '0'
40
+ version: '11.0'
41
41
  description: ! "= DESCRIPTION:\n\nProvides a Chef handler which can report run status,
42
42
  including any changes that were made, to a rabbit server. In the case of failed
43
43
  runs a backtrace will be included in the details reported. Based on the Graylog
@@ -69,7 +69,7 @@ description: ! "= DESCRIPTION:\n\nProvides a Chef handler which can report run s
69
69
  \ arguments({\n :blacklist => {\n \"chef_handler\" => {\n \"chef_handler\"
70
70
  => [ \"nothing\", \"enable\" ]\n }\n }\n })\n\n supports
71
71
  :exception => true, :report => true\n end.run_action(:enable)\n\n= LICENSE and
72
- AUTHOR:\n\nCopyright 2014 by MTN Sattelite Communications\n\nLicensed under the
72
+ AUTHOR:\n\nCopyright 2014 by MTN Satellite Communications\n\nLicensed under the
73
73
  Apache License, Version 2.0 (the “License”); you may not use this file except in
74
74
  compliance with the License. You may obtain a copy of the License at \n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless
75
75
  required by applicable law or agreed to in writing, software distributed under the
@@ -77,7 +77,7 @@ description: ! "= DESCRIPTION:\n\nProvides a Chef handler which can report run s
77
77
  ANY KIND, either express or implied. \nSee the License for the specific language
78
78
  governing permissions and limitations under the License.\n"
79
79
  email:
80
- - marat.garafutdinov@mtnsart.com
80
+ - marat.garafutdinov@mtnsat.com
81
81
  executables: []
82
82
  extensions: []
83
83
  extra_rdoc_files: []
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  version: '0'
110
110
  requirements: []
111
111
  rubyforge_project: chef-rabbit
112
- rubygems_version: 2.2.2
112
+ rubygems_version: 2.4.1
113
113
  signing_key:
114
114
  specification_version: 4
115
115
  summary: Provides a Chef handler which reports run failures and changes to a Rabbit