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 +4 -4
- data/VERSION +1 -1
- data/lib/scout/misc/hook.rb +6 -7
- data/lib/scout/misc/system.rb +1 -1
- data/scout-essentials.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e9a197a5818c23c9c2d0f3371382291da7c0b32d3a67643ff1984e81b8b804ec
|
4
|
+
data.tar.gz: ab3ab120fc7fa01d0c58ccf545efd192426169b3e9bfdd43d63a38224dcd72ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1fbe5edf0f18517f5cb73c11050737a191d6b564bf507df1ab83cab0d232196ffed2e44eccd34e20bcf839e436fcb95966bfa410946652c21fd3fa4aa5d02a99
|
7
|
+
data.tar.gz: cd52451b6c40fad0f3f6e0ec69663891f1423b21f1ed0a5cd69115a0d9f934558a2c2784f204278eacf59025f72d4e57ef0750591a2f4be896a5aa0807e60ca6
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.6.
|
1
|
+
1.6.8
|
data/lib/scout/misc/hook.rb
CHANGED
@@ -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
|
data/lib/scout/misc/system.rb
CHANGED
data/scout-essentials.gemspec
CHANGED
@@ -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.
|
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.
|
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]
|