kurchatov 0.4.5 → 0.4.6

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: dedbea2515abecae45c05763127b1509151bb816
4
- data.tar.gz: 4744f4e3f3d895767abbc7f7109d97e1552a2ef5
3
+ metadata.gz: b6e1d34d6fcb98e1be197acf85a0bd17d91a0e4e
4
+ data.tar.gz: 6e6047fd40b42401815a712d40b9b84c48e6fddb
5
5
  SHA512:
6
- metadata.gz: 98b2b1e536a047323d3353c63b73e5f0cdb1d6fd86196a1ca9942fd388dc6ed41f4f096387e9a1068bc86166c89652336130cf70236c9350fe074c61a73842ec
7
- data.tar.gz: 5a345331cdf60692fa7264ba9632623c085e94e3fb67f258785d8b0244c044d7a1bd5d07f78f943331ade28fb08772f8f5a152dfdc70f932ebd9dbeb9cd31966
6
+ metadata.gz: 2d601d6e41e5e6102389b6a39ecb36aa1eea9fbb683959ca77b3f946248990afd7bbc033519407c480070a3645237e97bad8996572d31c5213506ff45358d298
7
+ data.tar.gz: 001ea41bc352f5acd2d63399b502c49c1625da3aebd6f267c4e5d0cf8b4ddb0fac3a4e75776721f8ed77e558f6b0e7e1784ede8068adf58e39f546619cfccb92
data/app/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- gem "kurchatov", "= 0.4.4"
3
+ gem "kurchatov", "= 0.4.6"
4
4
  gem "beefcake", "=0.5.0"
5
5
  gem "sys-filesystem"
6
6
  gem "sys-proctable"
data/app/Gemfile.lock CHANGED
@@ -14,7 +14,7 @@ GEM
14
14
  file-tail (1.0.12)
15
15
  tins (~> 0.5)
16
16
  ipaddress (0.8.0)
17
- kurchatov (0.4.4)
17
+ kurchatov (0.4.6)
18
18
  beefcake (>= 0.3.5)
19
19
  ohai
20
20
  libyajl2 (1.0.1)
@@ -54,7 +54,7 @@ DEPENDENCIES
54
54
  beefcake (= 0.5.0)
55
55
  ffi-rzmq
56
56
  file-tail
57
- kurchatov (= 0.4.4)
57
+ kurchatov (= 0.4.6)
58
58
  net-ntp
59
59
  net-ping
60
60
  parallel
data/debian/changelog CHANGED
@@ -1,3 +1,15 @@
1
+ riemann-client (1:0.4.6) stable; urgency=low
2
+
3
+ * --test-plugin improve.
4
+
5
+ -- Undev DevOps Team <devops@undev.ru> Tue, 27 Jan 2015 16:17:51 +0300
6
+
7
+ riemann-client (1:0.4.5) stable; urgency=low
8
+
9
+ * Http body size limit.
10
+
11
+ -- Undev DevOps Team <devops@undev.ru> Wed, 21 Jan 2015 13:45:05 +0300
12
+
1
13
  riemann-client (1:0.4.4) stable; urgency=low
2
14
 
3
15
  * Fix set time in event.
@@ -9,7 +9,8 @@ module Kurchatov
9
9
  def self.load_test_plugin(plugin_path, config_file)
10
10
  config = File.exists?(config_file) ? YAML.load_file(config_file) : {}
11
11
  plugin = Kurchatov::Plugins::DSL.load_riemann_plugin(plugin_path)
12
- plugin.plugin.merge!(config[plugin.name]) unless config.empty?
12
+ plugin.plugin.merge!(config[plugin.name]) if (!config.nil? && !config[plugin.name].nil?)
13
+ plugin.instance_eval(&plugin.required)
13
14
  [plugin]
14
15
  end
15
16
 
@@ -1,3 +1,3 @@
1
1
  module Kurchatov
2
- VERSION = "0.4.5"
2
+ VERSION = "0.4.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kurchatov
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.5
4
+ version: 0.4.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vasiliev Dmitry
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-21 00:00:00.000000000 Z
11
+ date: 2015-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: beefcake