require_bench 1.0.4.pre.alpha.4 → 1.0.4.pre.alpha.5

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
2
  SHA256:
3
- metadata.gz: 026d8a38aa26e66261868831f961e0b6f9fcc11b155d662b72a74a34eb29fa33
4
- data.tar.gz: b61edbde73769d00fd2c48f48852712803a935475b67aefbb640a615b828b625
3
+ metadata.gz: f285dc3596cb6bdb255ca52e04672eb3db41190a00d539ccb95afb799ffe54b6
4
+ data.tar.gz: 2e3516aabd3abd17ca1b5d2cb6446a2c35b8f4eb618072784147259b2d68b324
5
5
  SHA512:
6
- metadata.gz: d9e1d511651debe3a12d6542b1546f407d30e919dbc331de463f62775a6a155ea9bca4e749bd4b7e3da945d7247e7d3ee8e7a59685ae3ae16130c962b6537607
7
- data.tar.gz: 7a06355f673765e18f116f01b7fd59199ab5c850d7cfaaccfc237ff1bdfe5f48ae8cf7fdac22cf9c2b6a9fd0a12cc4bb3815c5382819862614c68d1f9915700d
6
+ metadata.gz: dad7f222558be2eed0b2c4ff1747417ccd6a3fed369a179b864947f874856c3168586552d97ea9d333e09757d8331c95ce805419688cb34b0a481dd2767497c1
7
+ data.tar.gz: 945bec799822d77e515612adf017b79b298aafa9e2ae5d04265c1209051c9e6a2b6236ee7e3be0c131afc6f1ce59c329c93297ae7a00e928246ec742089b9ef9
@@ -18,20 +18,20 @@ class Printer
18
18
  end
19
19
 
20
20
  # Log statement when a file starts loading
21
- def s(file, type)
21
+ def out_start(file, type)
22
22
  printf "🚥 #{ColorizedString["[RequireBench-#{type}]"].colorize(first)} 📖 %s 🚥\n", file
23
- rotate!
24
23
  end
25
24
 
26
25
  # Log statement when a file completed loading
27
- def p(seconds, file, type)
26
+ def out_consume(seconds, file, type)
28
27
  printf "🚥 #{ColorizedString["[RequireBench-#{type}]"].colorize(first)} ☑️ %10f %s 🚥\n", seconds, file
29
28
  rotate!
30
29
  end
31
30
 
32
31
  # Log statement when a file raises an error while loading
33
- def e(error, file, type)
32
+ def out_err(error, file, type)
34
33
  printf "🚥 #{ColorizedString["[RequireBench-#{type}]"].colorize(first)} ❌ '#{error.class}: #{error.message}' loading %s 🚥\n#{error.backtrace.join("\n")}",
35
34
  file
35
+ rotate!
36
36
  end
37
37
  end
@@ -2,18 +2,18 @@
2
2
 
3
3
  class Printer
4
4
  # Log statement when a file starts loading
5
- def s(file, type)
5
+ def out_start(file, type)
6
6
  printf "🚥 [RequireBench-#{type}] 📖 %s 🚥\n", file
7
7
  rotate!
8
8
  end
9
9
 
10
10
  # Log statement when a file completed loading
11
- def p(seconds, file, type)
11
+ def out_consume(seconds, file, type)
12
12
  printf "🚥 [RequireBench-#{type}] ☑️ %10f %s 🚥\n", seconds, file
13
13
  end
14
14
 
15
15
  # Log statement when a file raises an error while loading
16
- def e(error, file, type)
16
+ def out_err(error, file, type)
17
17
  printf "🚥 [RequireBench-#{type}] ❌ '#{error.class}: #{error.message}' loading %s 🚥\n#{error.backtrace.join("\n")}",
18
18
  file
19
19
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RequireBench
4
- VERSION = '1.0.4-alpha.4'
4
+ VERSION = '1.0.4-alpha.5'
5
5
  end
data/lib/require_bench.rb CHANGED
@@ -108,7 +108,7 @@ module RequireBench
108
108
  end
109
109
  end
110
110
  end
111
- PRINTER.p(seconds, file, short_type)
111
+ PRINTER.out_consume(seconds, file, short_type)
112
112
  if prefix.nil? && (NO_GROUP_PATTERN.nil? || !NO_GROUP_PATTERN.match?(file))
113
113
  # This results in grouping all files with the same leading path part (e.g. "models", or "lib")
114
114
  # into the same timing bucket.
@@ -157,12 +157,12 @@ if REQUIRE_BENCH_ENABLED
157
157
  short_type = type[0]
158
158
  measure = RequireBench::INCLUDE_PATTERN && file_path.match?(RequireBench::INCLUDE_PATTERN)
159
159
  skippy = RequireBench::SKIP_PATTERN && file_path.match?(RequireBench::SKIP_PATTERN)
160
- RequireBench::PRINTER.p(file, short_type) if RequireBench::LOG_START
160
+ RequireBench::PRINTER.out_start(file, short_type) if RequireBench::LOG_START
161
161
  if RequireBench::RESCUED_CLASSES.any?
162
162
  begin
163
163
  _require_bench_file(type, measure, skippy, file_path)
164
164
  rescue *RequireBench::RESCUED_CLASSES => e
165
- RequireBench::PRINTER.e(e, file, short_type)
165
+ RequireBench::PRINTER.out_error(e, file, short_type)
166
166
  end
167
167
  else
168
168
  _require_bench_file(type, measure, skippy, file_path)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: require_bench
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4.pre.alpha.4
4
+ version: 1.0.4.pre.alpha.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling