scout-essentials 1.6.7 → 1.6.8

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
  SHA256:
3
- metadata.gz: 800981da332ab6cceb17244d49454560c59cdc86df7122b012c2b26b7ab7d427
4
- data.tar.gz: 02c265335fd31c11f9b0161708c670d4dfdf1a989cfb6254d5f11c08118e6e98
3
+ metadata.gz: e9a197a5818c23c9c2d0f3371382291da7c0b32d3a67643ff1984e81b8b804ec
4
+ data.tar.gz: ab3ab120fc7fa01d0c58ccf545efd192426169b3e9bfdd43d63a38224dcd72ac
5
5
  SHA512:
6
- metadata.gz: eff7851e6e63bf645d366c38e1cac85a3a6d4b0d34a00091d4c0cbb683361aab9b60a5da0e21fae5318d332bf559275b4748362520e66cc509f125988d7969a9
7
- data.tar.gz: 74c799cbfdbf5458bc7e4e59a6e966a280cf39bc0af9bf4691ef8b4390303c78b360b56c81fafbf6465e5932af3eba43d08fba56723a13c32840254358bb658f
6
+ metadata.gz: 1fbe5edf0f18517f5cb73c11050737a191d6b564bf507df1ab83cab0d232196ffed2e44eccd34e20bcf839e436fcb95966bfa410946652c21fd3fa4aa5d02a99
7
+ data.tar.gz: cd52451b6c40fad0f3f6e0ec69663891f1423b21f1ed0a5cd69115a0d9f934558a2c2784f204278eacf59025f72d4e57ef0750591a2f4be896a5aa0807e60ca6
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.7
1
+ 1.6.8
@@ -12,14 +12,14 @@ module Hook
12
12
  orig_name = ("orig_" + method_name.to_s).to_sym
13
13
  if not base_class.singleton_methods.include?(orig_name)
14
14
  base_class.singleton_class.alias_method orig_name, method_name
15
- base_class.define_singleton_method method_name do |*args|
15
+ base_class.define_singleton_method method_name do |*args,&block|
16
16
  base_class.class_variable_get(:@@hooks).each do |hook|
17
17
  next if hook.respond_to?(:claim) and not hook.claim(*args)
18
18
  if hook.respond_to?(method_name)
19
- return hook.send(method_name, *args)
19
+ return hook.send(method_name, *args, &block)
20
20
  end
21
21
  end
22
- return base_class.send(orig_name, *args)
22
+ return base_class.send(orig_name, *args, &block)
23
23
  end
24
24
  end
25
25
  end
@@ -29,15 +29,14 @@ module Hook
29
29
  orig_name = ("orig_" + method_name.to_s).to_sym
30
30
  if not base_class.instance_methods.include?(orig_name)
31
31
  base_class.alias_method orig_name, method_name
32
- base_class.define_method method_name do |*args|
32
+ base_class.define_method method_name do |*args,&block|
33
33
  base_class.class_variable_get(:@@hooks).each do |hook|
34
34
  next if hook.respond_to?(:claim) and not hook.claim(self, *args)
35
35
  if hook.instance_methods.include?(method_name)
36
- return hook.instance_method(method_name).bind(self).call *args
37
- #return self.instance_exec *args, &hook.instance_method(method_name)
36
+ return hook.instance_method(method_name).bind(self).call *args, &block
38
37
  end
39
38
  end
40
- return self.send(orig_name, *args)
39
+ return self.send(orig_name, *args, &block)
41
40
  end
42
41
  end
43
42
  end
@@ -2,7 +2,7 @@ module Misc
2
2
 
3
3
  def self.hostname
4
4
  @@hostname ||= begin
5
- `hostname`.strip
5
+ (ENV["HOSTNAME"] || `hostname`).strip
6
6
  end
7
7
  end
8
8
 
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: scout-essentials 1.6.7 ruby lib
5
+ # stub: scout-essentials 1.6.8 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "scout-essentials".freeze
9
- s.version = "1.6.7".freeze
9
+ s.version = "1.6.8".freeze
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib".freeze]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scout-essentials
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.7
4
+ version: 1.6.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miguel Vazquez