capistrano2-zabbix 0.1.3 → 0.3.0

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
- SHA1:
3
- metadata.gz: 5ff5eb345ec9879e64d547b161f3115e7fb05027
4
- data.tar.gz: 88b40acbf5f0a59c1a441793a5e763f42772927b
2
+ SHA256:
3
+ metadata.gz: '0095dff15a8bb304a4715c69b286105764396375d3b990d14b0b10bd075b00b4'
4
+ data.tar.gz: 05a870592a2c5f426f7a3e60832eb89e8b89f4a5adc116084813506bff4e3951
5
5
  SHA512:
6
- metadata.gz: 54e357c547e20c32a323e34faf11b59fe9a463d3d4c4315472c1369c3f4ccd60bcafdd8431ab1bb7e153fff21742aa82b67861b288398e3819ecbbf5a43903b4
7
- data.tar.gz: 31a9c2eb46ca7108ea87a91f25be877572174282d39fd48a40fd4f0eef884546725e4a01919cabc56c92c3e4fe69e281ea88544ee04aa300c596cb7fdf03ca36
6
+ metadata.gz: 74790bf19c6cdf4d6e93dad3fb08e3a3fef793456c8260b7cfe8c705dbe292768c79d98eecaf0724d147ce8afe7a7812b355d04253ec740cfd9be8601d79814d
7
+ data.tar.gz: 386e9916cb9530a99fc2df182bb9c8525a139b9932342ab3ba0d279fcf5d15c19c24ed46bb57c29b34550a7b0e761380e4baa563b4dadb8d44ddcc850024fc60
@@ -0,0 +1,58 @@
1
+ name: Ruby
2
+
3
+ on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
+ branches: [ "master" ]
8
+
9
+ permissions:
10
+ contents: read
11
+
12
+ jobs:
13
+ test-old-rubygems:
14
+ runs-on: ubuntu-latest
15
+ strategy:
16
+ matrix:
17
+ ruby-version:
18
+ - '2.0'
19
+ - '2.1'
20
+ - '2.2'
21
+
22
+ steps:
23
+ - uses: actions/checkout@v3
24
+ - name: Set up Ruby
25
+ # https://github.com/ruby/setup-ruby#versioning
26
+ uses: ruby/setup-ruby@v1
27
+ with:
28
+ ruby-version: ${{ matrix.ruby-version }}
29
+ rubygems: '2.2.5'
30
+ bundler: '1.17.3'
31
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
32
+ - name: Run tests
33
+ run: bundle exec rake
34
+
35
+ test:
36
+ runs-on: ubuntu-latest
37
+ strategy:
38
+ matrix:
39
+ ruby-version:
40
+ - '2.3'
41
+ - '2.4'
42
+ - '2.5'
43
+ - '2.6'
44
+ - '2.7'
45
+ - '3.0'
46
+ - '3.1'
47
+
48
+ steps:
49
+ - uses: actions/checkout@v3
50
+ - name: Set up Ruby
51
+ # https://github.com/ruby/setup-ruby#versioning
52
+ uses: ruby/setup-ruby@v1
53
+ with:
54
+ ruby-version: ${{ matrix.ruby-version }}
55
+ rubygems: latest
56
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
57
+ - name: Run tests
58
+ run: bundle exec rake
data/Gemfile CHANGED
@@ -1,18 +1,19 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
- gem 'zabbixapi', ['>=2.2.0', '<2.3.0']
3
+ gem 'zabbixapi', '~>4.2.0'
4
4
  gem 'capistrano', '~> 2.0'
5
5
 
6
6
  group :development do
7
7
  gem 'rspec', '~> 3.2'
8
8
  gem 'yard', '~> 0.7'
9
- gem 'rdoc', '~> 3.12'
10
- gem 'bundler', '~> 1.0'
9
+ gem 'rdoc', '>= 4.3.0'
10
+ gem 'bundler', '>= 1.0'
11
11
  gem 'jeweler', '~> 2.0'
12
12
  gem 'simplecov', '~> 0.10'
13
13
  gem 'vcr', '~> 2.9'
14
14
  gem 'webmock', '~> 1.21'
15
- gem 'pry', '~> 0.10'
15
+ gem 'crack', '~> 0.3.2'
16
+ gem 'pry', '>= 0.10'
16
17
  gem 'guard-rubocop', '~> 1.2'
17
18
  gem 'guard', '~> 2.12'
18
19
  gem 'guard-rspec', '~> 4.5'
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # capistrano2-zabbix
2
2
 
3
+ [![Build Status](https://travis-ci.org/skrobul/capistrano2-zabbix.svg?branch=master)](https://travis-ci.org/skrobul/capistrano2-zabbix)
4
+
3
5
  Tired of manually creating maintenance objects in your Zabbix monitoring
4
6
  system for every new release of your application ? This gem is for you! It
5
7
  automates creation and removal of necessary objects so that your code can be
@@ -26,10 +28,11 @@ Then in your `config/deploy.rb` you need to require the gem:
26
28
  * `:zabbix_user` - user name that has permissions to edit maintenances
27
29
  * `:zabbix_password` - self explanatory
28
30
  * `:zabbix_period` - number of seconds that maintance is created for
29
- * `:zabbix_groupid` - ID of server group included in the maintenace
31
+ * `:zabbix_groupid` - ID of server group included in the maintenace. For
32
+ example, with default installations `Linux servers` is group number 2.
30
33
  * `:zabbix_auto_trigger` - if set to `true`, your deployment will
31
34
  automatically execute `zabbix:create` before deploying code and
32
- `zabbix:delete` when it's finished. If set to `false` (default) you have
35
+ `zabbix:delete` when it's finished. If set to `false` you have
33
36
  to hook those tasks up where you think it's appropriate.
34
37
 
35
38
  ### Configuration defaults
@@ -38,8 +41,8 @@ Then in your `config/deploy.rb` you need to require the gem:
38
41
  set :zabbix_user, 'Admin'
39
42
  set :zabbix_password, 'zabbix'
40
43
  set :zabbix_period, 60 * 60 * 10 # 10 hours
41
- set :zabbix_groupid, 2
42
- set :zabbix_auto_trigger, false
44
+ set :zabbix_groupid, 2 # Linux servers
45
+ set :zabbix_auto_trigger, true
43
46
  ```
44
47
 
45
48
  ## Usage
@@ -54,10 +57,17 @@ gem:
54
57
  something like this:
55
58
 
56
59
  ```ruby
57
- set :zabbix_auto_trigger, false # This is default, can be skipped.
60
+ set :zabbix_auto_trigger, false
58
61
  after 'deploy:update_code', 'zabbix:create'
59
62
  ```
60
63
 
64
+ * start/stop maintenances straight from your command line:
65
+ ```
66
+ ~/devel/zab-testproject cap zabbix:create
67
+ * 2015-05-14 17:19:40 executing `zabbix:create'
68
+ ~/devel/zab-testproject`
69
+ ```
70
+
61
71
 
62
72
  ## Contributing to capistrano2-zabbix
63
73
 
@@ -68,8 +78,7 @@ gem:
68
78
  * Commit and push until you are happy with your contribution.
69
79
  * Feel free to submit PR :)
70
80
 
71
- ## Copyright
72
-
73
- Copyright (c) 2015 Marek Skrobacki. See LICENSE.txt for
74
- further details.
81
+ ## License
82
+ 2015 [MIT](https://tldrlegal.com/license/mit-license).
75
83
 
84
+ Author: Marek Skrobacki.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.3
1
+ 0.3.0
@@ -2,29 +2,29 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: capistrano2-zabbix 0.1.3 ruby lib
5
+ # stub: capistrano2-zabbix 0.3.0 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
- s.name = "capistrano2-zabbix"
9
- s.version = "0.1.3"
8
+ s.name = "capistrano2-zabbix".freeze
9
+ s.version = "0.3.0"
10
10
 
11
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
- s.require_paths = ["lib"]
13
- s.authors = ["Marek Skrobacki"]
14
- s.date = "2015-05-14"
15
- s.description = "\n Tired of manually creating maintenance objects in your Zabbix monitoring\n system for every new release of your application ? This gem is for you! It\n automates creation and removal of necessary objects so that your code can be\n released without unnecessary false alerts.\n "
16
- s.email = "skrobul@skrobul.com"
11
+ s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
+ s.require_paths = ["lib".freeze]
13
+ s.authors = ["Marek Skrobacki".freeze]
14
+ s.date = "2022-08-24"
15
+ s.description = "\n Tired of manually creating maintenance objects in your Zabbix monitoring\n system for every new release of your application ? This gem is for you! It\n automates creation and removal of necessary objects so that your code can be\n released without unnecessary false alerts.\n ".freeze
16
+ s.email = "skrobul@skrobul.com".freeze
17
17
  s.extra_rdoc_files = [
18
18
  "LICENSE.txt",
19
19
  "README.md"
20
20
  ]
21
21
  s.files = [
22
22
  ".document",
23
+ ".github/workflows/ruby.yml",
23
24
  ".rspec",
24
25
  ".rubocop.yml",
25
26
  ".ruby-version",
26
27
  "Gemfile",
27
- "Gemfile.lock",
28
28
  "Guardfile",
29
29
  "LICENSE.txt",
30
30
  "README.md",
@@ -47,60 +47,47 @@ Gem::Specification.new do |s|
47
47
  "spec/spec_helper.rb",
48
48
  "spec/zabbix_maintenance_spec.rb"
49
49
  ]
50
- s.homepage = "http://github.com/skrobul/capistrano2-zabbix"
51
- s.licenses = ["MIT"]
52
- s.rubygems_version = "2.4.6"
53
- s.summary = "Create maintenances in Zabbix through Capistrano deployment"
50
+ s.homepage = "http://github.com/skrobul/capistrano2-zabbix".freeze
51
+ s.licenses = ["MIT".freeze]
52
+ s.rubygems_version = "3.3.7".freeze
53
+ s.summary = "Create maintenances in Zabbix through Capistrano deployment".freeze
54
54
 
55
55
  if s.respond_to? :specification_version then
56
56
  s.specification_version = 4
57
+ end
57
58
 
58
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
59
- s.add_runtime_dependency(%q<zabbixapi>, ["< 2.3.0", ">= 2.2.0"])
60
- s.add_runtime_dependency(%q<capistrano>, ["~> 2.0"])
61
- s.add_development_dependency(%q<rspec>, ["~> 3.2"])
62
- s.add_development_dependency(%q<yard>, ["~> 0.7"])
63
- s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
64
- s.add_development_dependency(%q<bundler>, ["~> 1.0"])
65
- s.add_development_dependency(%q<jeweler>, ["~> 2.0"])
66
- s.add_development_dependency(%q<simplecov>, ["~> 0.10"])
67
- s.add_development_dependency(%q<vcr>, ["~> 2.9"])
68
- s.add_development_dependency(%q<webmock>, ["~> 1.21"])
69
- s.add_development_dependency(%q<pry>, ["~> 0.10"])
70
- s.add_development_dependency(%q<guard-rubocop>, ["~> 1.2"])
71
- s.add_development_dependency(%q<guard>, ["~> 2.12"])
72
- s.add_development_dependency(%q<guard-rspec>, ["~> 4.5"])
73
- else
74
- s.add_dependency(%q<zabbixapi>, ["< 2.3.0", ">= 2.2.0"])
75
- s.add_dependency(%q<capistrano>, ["~> 2.0"])
76
- s.add_dependency(%q<rspec>, ["~> 3.2"])
77
- s.add_dependency(%q<yard>, ["~> 0.7"])
78
- s.add_dependency(%q<rdoc>, ["~> 3.12"])
79
- s.add_dependency(%q<bundler>, ["~> 1.0"])
80
- s.add_dependency(%q<jeweler>, ["~> 2.0"])
81
- s.add_dependency(%q<simplecov>, ["~> 0.10"])
82
- s.add_dependency(%q<vcr>, ["~> 2.9"])
83
- s.add_dependency(%q<webmock>, ["~> 1.21"])
84
- s.add_dependency(%q<pry>, ["~> 0.10"])
85
- s.add_dependency(%q<guard-rubocop>, ["~> 1.2"])
86
- s.add_dependency(%q<guard>, ["~> 2.12"])
87
- s.add_dependency(%q<guard-rspec>, ["~> 4.5"])
88
- end
59
+ if s.respond_to? :add_runtime_dependency then
60
+ s.add_runtime_dependency(%q<zabbixapi>.freeze, ["~> 4.2.0"])
61
+ s.add_runtime_dependency(%q<capistrano>.freeze, ["~> 2.0"])
62
+ s.add_development_dependency(%q<rspec>.freeze, ["~> 3.2"])
63
+ s.add_development_dependency(%q<yard>.freeze, ["~> 0.7"])
64
+ s.add_development_dependency(%q<rdoc>.freeze, [">= 4.3.0"])
65
+ s.add_development_dependency(%q<bundler>.freeze, [">= 1.0"])
66
+ s.add_development_dependency(%q<jeweler>.freeze, ["~> 2.0"])
67
+ s.add_development_dependency(%q<simplecov>.freeze, ["~> 0.10"])
68
+ s.add_development_dependency(%q<vcr>.freeze, ["~> 2.9"])
69
+ s.add_development_dependency(%q<webmock>.freeze, ["~> 1.21"])
70
+ s.add_development_dependency(%q<crack>.freeze, ["~> 0.3.2"])
71
+ s.add_development_dependency(%q<pry>.freeze, [">= 0.10"])
72
+ s.add_development_dependency(%q<guard-rubocop>.freeze, ["~> 1.2"])
73
+ s.add_development_dependency(%q<guard>.freeze, ["~> 2.12"])
74
+ s.add_development_dependency(%q<guard-rspec>.freeze, ["~> 4.5"])
89
75
  else
90
- s.add_dependency(%q<zabbixapi>, ["< 2.3.0", ">= 2.2.0"])
91
- s.add_dependency(%q<capistrano>, ["~> 2.0"])
92
- s.add_dependency(%q<rspec>, ["~> 3.2"])
93
- s.add_dependency(%q<yard>, ["~> 0.7"])
94
- s.add_dependency(%q<rdoc>, ["~> 3.12"])
95
- s.add_dependency(%q<bundler>, ["~> 1.0"])
96
- s.add_dependency(%q<jeweler>, ["~> 2.0"])
97
- s.add_dependency(%q<simplecov>, ["~> 0.10"])
98
- s.add_dependency(%q<vcr>, ["~> 2.9"])
99
- s.add_dependency(%q<webmock>, ["~> 1.21"])
100
- s.add_dependency(%q<pry>, ["~> 0.10"])
101
- s.add_dependency(%q<guard-rubocop>, ["~> 1.2"])
102
- s.add_dependency(%q<guard>, ["~> 2.12"])
103
- s.add_dependency(%q<guard-rspec>, ["~> 4.5"])
76
+ s.add_dependency(%q<zabbixapi>.freeze, ["~> 4.2.0"])
77
+ s.add_dependency(%q<capistrano>.freeze, ["~> 2.0"])
78
+ s.add_dependency(%q<rspec>.freeze, ["~> 3.2"])
79
+ s.add_dependency(%q<yard>.freeze, ["~> 0.7"])
80
+ s.add_dependency(%q<rdoc>.freeze, [">= 4.3.0"])
81
+ s.add_dependency(%q<bundler>.freeze, [">= 1.0"])
82
+ s.add_dependency(%q<jeweler>.freeze, ["~> 2.0"])
83
+ s.add_dependency(%q<simplecov>.freeze, ["~> 0.10"])
84
+ s.add_dependency(%q<vcr>.freeze, ["~> 2.9"])
85
+ s.add_dependency(%q<webmock>.freeze, ["~> 1.21"])
86
+ s.add_dependency(%q<crack>.freeze, ["~> 0.3.2"])
87
+ s.add_dependency(%q<pry>.freeze, [">= 0.10"])
88
+ s.add_dependency(%q<guard-rubocop>.freeze, ["~> 1.2"])
89
+ s.add_dependency(%q<guard>.freeze, ["~> 2.12"])
90
+ s.add_dependency(%q<guard-rspec>.freeze, ["~> 4.5"])
104
91
  end
105
92
  end
106
93
 
@@ -12,7 +12,7 @@ Capistrano::Configuration.instance.load do
12
12
  set_default(:zabbix_password) { 'zabbix' }
13
13
  set_default(:zabbix_period) { 60 * 60 * 10 } # 10 hours
14
14
  set_default(:zabbix_groupid) { 2 }
15
- set_default(:zabbix_auto_trigger) { false }
15
+ set_default(:zabbix_auto_trigger) { true }
16
16
 
17
17
  namespace :zabbix do
18
18
  desc 'Create maintenance in Zabbix'
@@ -25,9 +25,9 @@ Capistrano::Configuration.instance.load do
25
25
  zm_api.delete(id: zm_api.maint_id)
26
26
  end
27
27
  end
28
-
28
+ # has to be set before the plugin is actually required
29
29
  if zabbix_auto_trigger
30
- after 'deploy:setup', 'zabbix:create'
30
+ before 'deploy:update', 'zabbix:create'
31
31
  after 'deploy:restart', 'zabbix:delete'
32
32
  end
33
33
 
@@ -12,7 +12,7 @@ class ZabbixMaintenance
12
12
  if e.message =~ /password is incorrect/
13
13
  fail 'Login failed - incorrect password.'
14
14
  else
15
- fail "Error while connecting to Zabbix: #{e}"
15
+ raise e
16
16
  end
17
17
  end
18
18
 
@@ -22,8 +22,8 @@ class ZabbixMaintenance
22
22
 
23
23
  def maint_id
24
24
  ret = @zbx.query method: 'maintenance.get', params: {
25
- 'search': {
26
- 'name': @maint_title
25
+ 'search' => {
26
+ 'name' => @maint_title
27
27
  }
28
28
  }
29
29
  begin
@@ -5,7 +5,7 @@ http_interactions:
5
5
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":90443,"jsonrpc":"2.0"}'
8
+ string: '{"method":"apiinfo.version","params":{},"auth":"9cea11e673f8859e7c09085362dc99c1","id":36215,"jsonrpc":"2.0"}'
9
9
  headers:
10
10
  Accept-Encoding:
11
11
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -27,12 +27,12 @@ http_interactions:
27
27
  X-Powered-By:
28
28
  - PHP/5.3.17
29
29
  Content-Length:
30
- - '72'
30
+ - '45'
31
31
  Content-Type:
32
32
  - application/json
33
33
  body:
34
34
  encoding: UTF-8
35
- string: '{"jsonrpc":"2.0","result":"9cea11e673f8859e7c09085362dc99c1","id":90443}'
35
+ string: '{"jsonrpc":"2.0","result":"4.0.0","id":36215}'
36
36
  http_version:
37
37
  recorded_at: Thu, 14 May 2015 12:16:34 GMT
38
38
  - request:
@@ -40,7 +40,7 @@ http_interactions:
40
40
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
41
41
  body:
42
42
  encoding: UTF-8
43
- string: '{"method":"apiinfo.version","params":{},"auth":"9cea11e673f8859e7c09085362dc99c1","id":36215,"jsonrpc":"2.0"}'
43
+ string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":90443,"jsonrpc":"2.0"}'
44
44
  headers:
45
45
  Accept-Encoding:
46
46
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -62,12 +62,12 @@ http_interactions:
62
62
  X-Powered-By:
63
63
  - PHP/5.3.17
64
64
  Content-Length:
65
- - '45'
65
+ - '72'
66
66
  Content-Type:
67
67
  - application/json
68
68
  body:
69
69
  encoding: UTF-8
70
- string: '{"jsonrpc":"2.0","result":"2.2.2","id":36215}'
70
+ string: '{"jsonrpc":"2.0","result":"9cea11e673f8859e7c09085362dc99c1","id":90443}'
71
71
  http_version:
72
72
  recorded_at: Thu, 14 May 2015 12:16:34 GMT
73
73
  - request:
@@ -5,7 +5,7 @@ http_interactions:
5
5
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":12876,"jsonrpc":"2.0"}'
8
+ string: '{"method":"apiinfo.version","params":{},"auth":"d0762dbd317f9340c2f50e3740fb32b4","id":92137,"jsonrpc":"2.0"}'
9
9
  headers:
10
10
  Accept-Encoding:
11
11
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -21,18 +21,18 @@ http_interactions:
21
21
  message: OK
22
22
  headers:
23
23
  Date:
24
- - Thu, 14 May 2015 04:05:39 GMT
24
+ - Thu, 14 May 2015 04:05:40 GMT
25
25
  Server:
26
26
  - Apache/2.2.22 (Linux/SUSE)
27
27
  X-Powered-By:
28
28
  - PHP/5.3.17
29
29
  Content-Length:
30
- - '72'
30
+ - '45'
31
31
  Content-Type:
32
32
  - application/json
33
33
  body:
34
34
  encoding: UTF-8
35
- string: '{"jsonrpc":"2.0","result":"d0762dbd317f9340c2f50e3740fb32b4","id":12876}'
35
+ string: '{"jsonrpc":"2.0","result":"4.0.0","id":92137}'
36
36
  http_version:
37
37
  recorded_at: Thu, 14 May 2015 11:36:59 GMT
38
38
  - request:
@@ -40,7 +40,7 @@ http_interactions:
40
40
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
41
41
  body:
42
42
  encoding: UTF-8
43
- string: '{"method":"apiinfo.version","params":{},"auth":"d0762dbd317f9340c2f50e3740fb32b4","id":92137,"jsonrpc":"2.0"}'
43
+ string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":12876,"jsonrpc":"2.0"}'
44
44
  headers:
45
45
  Accept-Encoding:
46
46
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -56,18 +56,18 @@ http_interactions:
56
56
  message: OK
57
57
  headers:
58
58
  Date:
59
- - Thu, 14 May 2015 04:05:40 GMT
59
+ - Thu, 14 May 2015 04:05:39 GMT
60
60
  Server:
61
61
  - Apache/2.2.22 (Linux/SUSE)
62
62
  X-Powered-By:
63
63
  - PHP/5.3.17
64
64
  Content-Length:
65
- - '45'
65
+ - '72'
66
66
  Content-Type:
67
67
  - application/json
68
68
  body:
69
69
  encoding: UTF-8
70
- string: '{"jsonrpc":"2.0","result":"2.2.2","id":92137}'
70
+ string: '{"jsonrpc":"2.0","result":"d0762dbd317f9340c2f50e3740fb32b4","id":12876}'
71
71
  http_version:
72
72
  recorded_at: Thu, 14 May 2015 11:36:59 GMT
73
73
  - request:
@@ -5,7 +5,7 @@ http_interactions:
5
5
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":76622,"jsonrpc":"2.0"}'
8
+ string: '{"method":"apiinfo.version","params":{},"auth":"aebd33c25d82d0bab6c1477705762484","id":77881,"jsonrpc":"2.0"}'
9
9
  headers:
10
10
  Accept-Encoding:
11
11
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -27,12 +27,12 @@ http_interactions:
27
27
  X-Powered-By:
28
28
  - PHP/5.3.17
29
29
  Content-Length:
30
- - '72'
30
+ - '45'
31
31
  Content-Type:
32
32
  - application/json
33
33
  body:
34
34
  encoding: UTF-8
35
- string: '{"jsonrpc":"2.0","result":"aebd33c25d82d0bab6c1477705762484","id":76622}'
35
+ string: '{"jsonrpc":"2.0","result":"4.0.0","id":77881}'
36
36
  http_version:
37
37
  recorded_at: Thu, 14 May 2015 12:06:05 GMT
38
38
  - request:
@@ -40,7 +40,7 @@ http_interactions:
40
40
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
41
41
  body:
42
42
  encoding: UTF-8
43
- string: '{"method":"apiinfo.version","params":{},"auth":"aebd33c25d82d0bab6c1477705762484","id":77881,"jsonrpc":"2.0"}'
43
+ string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":76622,"jsonrpc":"2.0"}'
44
44
  headers:
45
45
  Accept-Encoding:
46
46
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -62,12 +62,12 @@ http_interactions:
62
62
  X-Powered-By:
63
63
  - PHP/5.3.17
64
64
  Content-Length:
65
- - '45'
65
+ - '72'
66
66
  Content-Type:
67
67
  - application/json
68
68
  body:
69
69
  encoding: UTF-8
70
- string: '{"jsonrpc":"2.0","result":"2.2.2","id":77881}'
70
+ string: '{"jsonrpc":"2.0","result":"aebd33c25d82d0bab6c1477705762484","id":76622}'
71
71
  http_version:
72
72
  recorded_at: Thu, 14 May 2015 12:06:05 GMT
73
73
  - request:
@@ -5,7 +5,7 @@ http_interactions:
5
5
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":3374,"jsonrpc":"2.0"}'
8
+ string: '{"method":"apiinfo.version","params":{},"auth":"0e77b2d8af92d863adf4a492fabaec5f","id":34489,"jsonrpc":"2.0"}'
9
9
  headers:
10
10
  Accept-Encoding:
11
11
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -27,20 +27,20 @@ http_interactions:
27
27
  X-Powered-By:
28
28
  - PHP/5.3.17
29
29
  Content-Length:
30
- - '71'
30
+ - '45'
31
31
  Content-Type:
32
32
  - application/json
33
33
  body:
34
34
  encoding: UTF-8
35
- string: '{"jsonrpc":"2.0","result":"0e77b2d8af92d863adf4a492fabaec5f","id":3374}'
35
+ string: '{"jsonrpc":"2.0","result":"4.0.0","id":34489}'
36
36
  http_version:
37
- recorded_at: Thu, 14 May 2015 12:14:09 GMT
37
+ recorded_at: Thu, 14 May 2015 12:14:10 GMT
38
38
  - request:
39
39
  method: post
40
40
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
41
41
  body:
42
42
  encoding: UTF-8
43
- string: '{"method":"apiinfo.version","params":{},"auth":"0e77b2d8af92d863adf4a492fabaec5f","id":34489,"jsonrpc":"2.0"}'
43
+ string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":3374,"jsonrpc":"2.0"}'
44
44
  headers:
45
45
  Accept-Encoding:
46
46
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -62,14 +62,14 @@ http_interactions:
62
62
  X-Powered-By:
63
63
  - PHP/5.3.17
64
64
  Content-Length:
65
- - '45'
65
+ - '71'
66
66
  Content-Type:
67
67
  - application/json
68
68
  body:
69
69
  encoding: UTF-8
70
- string: '{"jsonrpc":"2.0","result":"2.2.2","id":34489}'
70
+ string: '{"jsonrpc":"2.0","result":"0e77b2d8af92d863adf4a492fabaec5f","id":3374}'
71
71
  http_version:
72
- recorded_at: Thu, 14 May 2015 12:14:10 GMT
72
+ recorded_at: Thu, 14 May 2015 12:14:09 GMT
73
73
  - request:
74
74
  method: post
75
75
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
@@ -5,7 +5,7 @@ http_interactions:
5
5
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":64158,"jsonrpc":"2.0"}'
8
+ string: '{"method":"apiinfo.version","params":{},"auth":"fbba76cc74de902d341f6304f440d589","id":41977,"jsonrpc":"2.0"}'
9
9
  headers:
10
10
  Accept-Encoding:
11
11
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -27,12 +27,12 @@ http_interactions:
27
27
  X-Powered-By:
28
28
  - PHP/5.3.17
29
29
  Content-Length:
30
- - '72'
30
+ - '45'
31
31
  Content-Type:
32
32
  - application/json
33
33
  body:
34
34
  encoding: UTF-8
35
- string: '{"jsonrpc":"2.0","result":"fbba76cc74de902d341f6304f440d589","id":64158}'
35
+ string: '{"jsonrpc":"2.0","result":"4.0.0","id":41977}'
36
36
  http_version:
37
37
  recorded_at: Thu, 14 May 2015 12:14:10 GMT
38
38
  - request:
@@ -40,7 +40,7 @@ http_interactions:
40
40
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
41
41
  body:
42
42
  encoding: UTF-8
43
- string: '{"method":"apiinfo.version","params":{},"auth":"fbba76cc74de902d341f6304f440d589","id":41977,"jsonrpc":"2.0"}'
43
+ string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":64158,"jsonrpc":"2.0"}'
44
44
  headers:
45
45
  Accept-Encoding:
46
46
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -62,12 +62,12 @@ http_interactions:
62
62
  X-Powered-By:
63
63
  - PHP/5.3.17
64
64
  Content-Length:
65
- - '45'
65
+ - '72'
66
66
  Content-Type:
67
67
  - application/json
68
68
  body:
69
69
  encoding: UTF-8
70
- string: '{"jsonrpc":"2.0","result":"2.2.2","id":41977}'
70
+ string: '{"jsonrpc":"2.0","result":"fbba76cc74de902d341f6304f440d589","id":64158}'
71
71
  http_version:
72
72
  recorded_at: Thu, 14 May 2015 12:14:10 GMT
73
73
  - request:
@@ -5,7 +5,7 @@ http_interactions:
5
5
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":82510,"jsonrpc":"2.0"}'
8
+ string: '{"method":"apiinfo.version","params":{},"auth":"758c5132a40395da60544bf2a6c47ad0","id":60370,"jsonrpc":"2.0"}'
9
9
  headers:
10
10
  Accept-Encoding:
11
11
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -27,12 +27,12 @@ http_interactions:
27
27
  X-Powered-By:
28
28
  - PHP/5.3.17
29
29
  Content-Length:
30
- - '72'
30
+ - '45'
31
31
  Content-Type:
32
32
  - application/json
33
33
  body:
34
34
  encoding: UTF-8
35
- string: '{"jsonrpc":"2.0","result":"758c5132a40395da60544bf2a6c47ad0","id":82510}'
35
+ string: '{"jsonrpc":"2.0","result":"4.0.0","id":60370}'
36
36
  http_version:
37
37
  recorded_at: Thu, 14 May 2015 13:30:02 GMT
38
38
  - request:
@@ -40,7 +40,7 @@ http_interactions:
40
40
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
41
41
  body:
42
42
  encoding: UTF-8
43
- string: '{"method":"apiinfo.version","params":{},"auth":"758c5132a40395da60544bf2a6c47ad0","id":60370,"jsonrpc":"2.0"}'
43
+ string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":82510,"jsonrpc":"2.0"}'
44
44
  headers:
45
45
  Accept-Encoding:
46
46
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -62,12 +62,12 @@ http_interactions:
62
62
  X-Powered-By:
63
63
  - PHP/5.3.17
64
64
  Content-Length:
65
- - '45'
65
+ - '72'
66
66
  Content-Type:
67
67
  - application/json
68
68
  body:
69
69
  encoding: UTF-8
70
- string: '{"jsonrpc":"2.0","result":"2.2.2","id":60370}'
70
+ string: '{"jsonrpc":"2.0","result":"758c5132a40395da60544bf2a6c47ad0","id":82510}'
71
71
  http_version:
72
72
  recorded_at: Thu, 14 May 2015 13:30:02 GMT
73
73
  - request:
@@ -5,7 +5,7 @@ http_interactions:
5
5
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":41380,"jsonrpc":"2.0"}'
8
+ string: '{"method":"apiinfo.version","params":{},"auth":"8760338ef8f6aeed1d347a5d28a6766d","id":28070,"jsonrpc":"2.0"}'
9
9
  headers:
10
10
  Accept-Encoding:
11
11
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -27,12 +27,12 @@ http_interactions:
27
27
  X-Powered-By:
28
28
  - PHP/5.3.17
29
29
  Content-Length:
30
- - '72'
30
+ - '45'
31
31
  Content-Type:
32
32
  - application/json
33
33
  body:
34
34
  encoding: UTF-8
35
- string: '{"jsonrpc":"2.0","result":"8760338ef8f6aeed1d347a5d28a6766d","id":41380}'
35
+ string: '{"jsonrpc":"2.0","result":"4.0.0","id":28070}'
36
36
  http_version:
37
37
  recorded_at: Thu, 14 May 2015 11:23:32 GMT
38
38
  - request:
@@ -40,7 +40,7 @@ http_interactions:
40
40
  uri: http://192.168.56.2/zabbix/api_jsonrpc.php
41
41
  body:
42
42
  encoding: UTF-8
43
- string: '{"method":"apiinfo.version","params":{},"auth":"8760338ef8f6aeed1d347a5d28a6766d","id":28070,"jsonrpc":"2.0"}'
43
+ string: '{"method":"user.authenticate","params":{"user":"Admin","password":"zabbix"},"auth":null,"id":41380,"jsonrpc":"2.0"}'
44
44
  headers:
45
45
  Accept-Encoding:
46
46
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -62,12 +62,12 @@ http_interactions:
62
62
  X-Powered-By:
63
63
  - PHP/5.3.17
64
64
  Content-Length:
65
- - '45'
65
+ - '72'
66
66
  Content-Type:
67
67
  - application/json
68
68
  body:
69
69
  encoding: UTF-8
70
- string: '{"jsonrpc":"2.0","result":"2.2.2","id":28070}'
70
+ string: '{"jsonrpc":"2.0","result":"8760338ef8f6aeed1d347a5d28a6766d","id":41380}'
71
71
  http_version:
72
72
  recorded_at: Thu, 14 May 2015 11:23:32 GMT
73
73
  - request:
metadata CHANGED
@@ -1,35 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano2-zabbix
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marek Skrobacki
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-14 00:00:00.000000000 Z
11
+ date: 2022-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: zabbixapi
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "<"
18
- - !ruby/object:Gem::Version
19
- version: 2.3.0
20
- - - ">="
17
+ - - "~>"
21
18
  - !ruby/object:Gem::Version
22
- version: 2.2.0
19
+ version: 4.2.0
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
- - - "<"
28
- - !ruby/object:Gem::Version
29
- version: 2.3.0
30
- - - ">="
24
+ - - "~>"
31
25
  - !ruby/object:Gem::Version
32
- version: 2.2.0
26
+ version: 4.2.0
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: capistrano
35
29
  requirement: !ruby/object:Gem::Requirement
@@ -76,28 +70,28 @@ dependencies:
76
70
  name: rdoc
77
71
  requirement: !ruby/object:Gem::Requirement
78
72
  requirements:
79
- - - "~>"
73
+ - - ">="
80
74
  - !ruby/object:Gem::Version
81
- version: '3.12'
75
+ version: 4.3.0
82
76
  type: :development
83
77
  prerelease: false
84
78
  version_requirements: !ruby/object:Gem::Requirement
85
79
  requirements:
86
- - - "~>"
80
+ - - ">="
87
81
  - !ruby/object:Gem::Version
88
- version: '3.12'
82
+ version: 4.3.0
89
83
  - !ruby/object:Gem::Dependency
90
84
  name: bundler
91
85
  requirement: !ruby/object:Gem::Requirement
92
86
  requirements:
93
- - - "~>"
87
+ - - ">="
94
88
  - !ruby/object:Gem::Version
95
89
  version: '1.0'
96
90
  type: :development
97
91
  prerelease: false
98
92
  version_requirements: !ruby/object:Gem::Requirement
99
93
  requirements:
100
- - - "~>"
94
+ - - ">="
101
95
  - !ruby/object:Gem::Version
102
96
  version: '1.0'
103
97
  - !ruby/object:Gem::Dependency
@@ -157,17 +151,31 @@ dependencies:
157
151
  - !ruby/object:Gem::Version
158
152
  version: '1.21'
159
153
  - !ruby/object:Gem::Dependency
160
- name: pry
154
+ name: crack
161
155
  requirement: !ruby/object:Gem::Requirement
162
156
  requirements:
163
157
  - - "~>"
164
158
  - !ruby/object:Gem::Version
165
- version: '0.10'
159
+ version: 0.3.2
166
160
  type: :development
167
161
  prerelease: false
168
162
  version_requirements: !ruby/object:Gem::Requirement
169
163
  requirements:
170
164
  - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: 0.3.2
167
+ - !ruby/object:Gem::Dependency
168
+ name: pry
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '0.10'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
171
179
  - !ruby/object:Gem::Version
172
180
  version: '0.10'
173
181
  - !ruby/object:Gem::Dependency
@@ -224,11 +232,11 @@ extra_rdoc_files:
224
232
  - README.md
225
233
  files:
226
234
  - ".document"
235
+ - ".github/workflows/ruby.yml"
227
236
  - ".rspec"
228
237
  - ".rubocop.yml"
229
238
  - ".ruby-version"
230
239
  - Gemfile
231
- - Gemfile.lock
232
240
  - Guardfile
233
241
  - LICENSE.txt
234
242
  - README.md
@@ -254,7 +262,7 @@ homepage: http://github.com/skrobul/capistrano2-zabbix
254
262
  licenses:
255
263
  - MIT
256
264
  metadata: {}
257
- post_install_message:
265
+ post_install_message:
258
266
  rdoc_options: []
259
267
  require_paths:
260
268
  - lib
@@ -269,9 +277,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
269
277
  - !ruby/object:Gem::Version
270
278
  version: '0'
271
279
  requirements: []
272
- rubyforge_project:
273
- rubygems_version: 2.4.6
274
- signing_key:
280
+ rubygems_version: 3.3.7
281
+ signing_key:
275
282
  specification_version: 4
276
283
  summary: Create maintenances in Zabbix through Capistrano deployment
277
284
  test_files: []
data/Gemfile.lock DELETED
@@ -1,169 +0,0 @@
1
- GEM
2
- remote: http://rubygems.org/
3
- specs:
4
- addressable (2.3.8)
5
- ast (2.0.0)
6
- astrolabe (1.3.0)
7
- parser (>= 2.2.0.pre.3, < 3.0)
8
- builder (3.2.2)
9
- capistrano (2.15.5)
10
- highline
11
- net-scp (>= 1.0.0)
12
- net-sftp (>= 2.0.0)
13
- net-ssh (>= 2.0.14)
14
- net-ssh-gateway (>= 1.1.0)
15
- celluloid (0.16.0)
16
- timers (~> 4.0.0)
17
- coderay (1.1.0)
18
- crack (0.4.2)
19
- safe_yaml (~> 1.0.0)
20
- descendants_tracker (0.0.4)
21
- thread_safe (~> 0.3, >= 0.3.1)
22
- diff-lcs (1.2.5)
23
- docile (1.1.5)
24
- faraday (0.9.1)
25
- multipart-post (>= 1.2, < 3)
26
- ffi (1.9.8)
27
- formatador (0.2.5)
28
- git (1.2.9.1)
29
- github_api (0.12.3)
30
- addressable (~> 2.3)
31
- descendants_tracker (~> 0.0.4)
32
- faraday (~> 0.8, < 0.10)
33
- hashie (>= 3.3)
34
- multi_json (>= 1.7.5, < 2.0)
35
- nokogiri (~> 1.6.3)
36
- oauth2
37
- guard (2.12.5)
38
- formatador (>= 0.2.4)
39
- listen (~> 2.7)
40
- lumberjack (~> 1.0)
41
- nenv (~> 0.1)
42
- notiffany (~> 0.0)
43
- pry (>= 0.9.12)
44
- shellany (~> 0.0)
45
- thor (>= 0.18.1)
46
- guard-compat (1.2.1)
47
- guard-rspec (4.5.0)
48
- guard (~> 2.1)
49
- guard-compat (~> 1.1)
50
- rspec (>= 2.99.0, < 4.0)
51
- guard-rubocop (1.2.0)
52
- guard (~> 2.0)
53
- rubocop (~> 0.20)
54
- hashie (3.4.1)
55
- highline (1.7.2)
56
- hitimes (1.2.2)
57
- jeweler (2.0.1)
58
- builder
59
- bundler (>= 1.0)
60
- git (>= 1.2.5)
61
- github_api
62
- highline (>= 1.6.15)
63
- nokogiri (>= 1.5.10)
64
- rake
65
- rdoc
66
- json (1.8.2)
67
- jwt (1.5.0)
68
- listen (2.10.0)
69
- celluloid (~> 0.16.0)
70
- rb-fsevent (>= 0.9.3)
71
- rb-inotify (>= 0.9)
72
- lumberjack (1.0.9)
73
- method_source (0.8.2)
74
- mini_portile (0.6.2)
75
- multi_json (1.11.0)
76
- multi_xml (0.5.5)
77
- multipart-post (2.0.0)
78
- nenv (0.2.0)
79
- net-scp (1.2.1)
80
- net-ssh (>= 2.6.5)
81
- net-sftp (2.1.2)
82
- net-ssh (>= 2.6.5)
83
- net-ssh (2.9.2)
84
- net-ssh-gateway (1.2.0)
85
- net-ssh (>= 2.6.5)
86
- nokogiri (1.6.6.2)
87
- mini_portile (~> 0.6.0)
88
- notiffany (0.0.6)
89
- nenv (~> 0.1)
90
- shellany (~> 0.0)
91
- oauth2 (1.0.0)
92
- faraday (>= 0.8, < 0.10)
93
- jwt (~> 1.0)
94
- multi_json (~> 1.3)
95
- multi_xml (~> 0.5)
96
- rack (~> 1.2)
97
- parser (2.2.2.2)
98
- ast (>= 1.1, < 3.0)
99
- powerpack (0.1.1)
100
- pry (0.10.1)
101
- coderay (~> 1.1.0)
102
- method_source (~> 0.8.1)
103
- slop (~> 3.4)
104
- rack (1.6.1)
105
- rainbow (2.0.0)
106
- rake (10.4.2)
107
- rb-fsevent (0.9.4)
108
- rb-inotify (0.9.5)
109
- ffi (>= 0.5.0)
110
- rdoc (3.12.2)
111
- json (~> 1.4)
112
- rspec (3.2.0)
113
- rspec-core (~> 3.2.0)
114
- rspec-expectations (~> 3.2.0)
115
- rspec-mocks (~> 3.2.0)
116
- rspec-core (3.2.3)
117
- rspec-support (~> 3.2.0)
118
- rspec-expectations (3.2.1)
119
- diff-lcs (>= 1.2.0, < 2.0)
120
- rspec-support (~> 3.2.0)
121
- rspec-mocks (3.2.1)
122
- diff-lcs (>= 1.2.0, < 2.0)
123
- rspec-support (~> 3.2.0)
124
- rspec-support (3.2.2)
125
- rubocop (0.31.0)
126
- astrolabe (~> 1.3)
127
- parser (>= 2.2.2.1, < 3.0)
128
- powerpack (~> 0.1)
129
- rainbow (>= 1.99.1, < 3.0)
130
- ruby-progressbar (~> 1.4)
131
- ruby-progressbar (1.7.5)
132
- safe_yaml (1.0.4)
133
- shellany (0.0.1)
134
- simplecov (0.10.0)
135
- docile (~> 1.1.0)
136
- json (~> 1.8)
137
- simplecov-html (~> 0.10.0)
138
- simplecov-html (0.10.0)
139
- slop (3.6.0)
140
- thor (0.19.1)
141
- thread_safe (0.3.5)
142
- timers (4.0.1)
143
- hitimes
144
- vcr (2.9.3)
145
- webmock (1.21.0)
146
- addressable (>= 2.3.6)
147
- crack (>= 0.3.2)
148
- yard (0.8.7.6)
149
- zabbixapi (2.2.2)
150
- json (~> 1.6, >= 1.6.0)
151
-
152
- PLATFORMS
153
- ruby
154
-
155
- DEPENDENCIES
156
- bundler (~> 1.0)
157
- capistrano (~> 2.0)
158
- guard (~> 2.12)
159
- guard-rspec (~> 4.5)
160
- guard-rubocop (~> 1.2)
161
- jeweler (~> 2.0)
162
- pry (~> 0.10)
163
- rdoc (~> 3.12)
164
- rspec (~> 3.2)
165
- simplecov (~> 0.10)
166
- vcr (~> 2.9)
167
- webmock (~> 1.21)
168
- yard (~> 0.7)
169
- zabbixapi (>= 2.2.0, < 2.3.0)