scout-essentials 1.6.7 → 1.6.9

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: a3c6a3bfa03c83171a83558fa73b4a23c5bffffb02fa036c36f4ad6417abbee9
4
+ data.tar.gz: 605d88dc63abe624432c9ece462ac19c33e243252667d5aa8b27a541e38582f6
5
5
  SHA512:
6
- metadata.gz: eff7851e6e63bf645d366c38e1cac85a3a6d4b0d34a00091d4c0cbb683361aab9b60a5da0e21fae5318d332bf559275b4748362520e66cc509f125988d7969a9
7
- data.tar.gz: 74c799cbfdbf5458bc7e4e59a6e966a280cf39bc0af9bf4691ef8b4390303c78b360b56c81fafbf6465e5932af3eba43d08fba56723a13c32840254358bb658f
6
+ metadata.gz: 9528eea7eccc93c0640f1530ecba2eeb874fd3f4bb211789f8bd830e127ff52c880cee2fb4621f92db7f855fb0d4f7d12098ace50726f76f14f27c5cd8ffb8f7
7
+ data.tar.gz: beaf0a93070745d6102d766931557369a74d5ada67182c7b13cde60eb5d14a8d8e71f29e8f80356910bac97fef1022e9bb21028d2a687515a04bb781dd7d61fb
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.7
1
+ 1.6.9
@@ -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
 
@@ -50,7 +50,7 @@ module Path
50
50
  sub('{LIBDIR}'){ path.libdir || (path.pkgdir.respond_to?(:libdir) && path.pkgdir.libdir) || Path.caller_lib_dir || "NOLIBDIR" }.
51
51
  sub('{MAPNAME}', map_name.to_s).
52
52
  sub('{REMOVE}/', '').
53
- sub('{REMOVE}', '').gsub(/\/+/,'/')
53
+ sub('{REMOVE}', '')
54
54
 
55
55
  while true
56
56
  file.gsub!(/\{(.+)(?<!\\)\/(.+)(?<!\\)\/(.+)\}/) do |m|
@@ -2,16 +2,16 @@
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.9 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.9".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]
13
13
  s.authors = ["Miguel Vazquez".freeze]
14
- s.date = "2025-03-19"
14
+ s.date = "2025-03-25"
15
15
  s.description = "Things a scout can use anywhere".freeze
16
16
  s.email = "mikisvaz@gmail.com".freeze
17
17
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,13 +1,13 @@
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.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miguel Vazquez
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-19 00:00:00.000000000 Z
10
+ date: 2025-03-25 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: shoulda