herb 0.10.3-arm-linux-gnu → 0.10.4-arm-linux-gnu

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: 0216afda4c85b7e2509251face5bc516c057ba8bc9282666bec6aa8eddecd4fd
4
- data.tar.gz: 0fd52650bda4254b48c5e8e50c3e4033448520eb05f4c8a1f7b96ccde3638342
3
+ metadata.gz: fddae3d8a9b51ffe6c9771fcda72949c362f75dde20cc6c3edf1e544d30fc4b4
4
+ data.tar.gz: 7dc90f43e83131edf366ec2f50f4c2b1517184df98d671249ac820ab639b582e
5
5
  SHA512:
6
- metadata.gz: 88e3352adad7331dea737ed9cff30b439d7a4fd4245d2437ba652d7b85328d5fa7ef2381609b70f685c72684c2f98129ee776ac42dd190c4e5839394dd7d9210
7
- data.tar.gz: 97ba9f70499b6ae5d6f5b0b59a1f085240a75a6d83709b19ec008ef79de8759105f20bd15af6c4a8be3a392ce5889d86ca18eddebc82f3a9b5a65a1e8da133a6
6
+ metadata.gz: 15dcc800733d5f683cda96a6b26b321d043f68732c1938e8b8250374e655a34a19497a96cb0363e5be5763168b9a3ba40ff1cd7c6af2a2a48120b5dffa5c6f60
7
+ data.tar.gz: fa5bc508b73e949c9cca819b038eb62a79acaebae548d6473887e448ed5abfadbb190da3ab5534c4644527c99b32e7fcc0191bb29725e998d448fe031d6d6dc0
data/lib/herb/3.2/herb.so CHANGED
Binary file
data/lib/herb/3.3/herb.so CHANGED
Binary file
data/lib/herb/3.4/herb.so CHANGED
Binary file
data/lib/herb/4.0/herb.so CHANGED
Binary file
data/lib/herb/engine.rb CHANGED
@@ -39,7 +39,7 @@ module Herb
39
39
  "'" => "'",
40
40
  }.freeze
41
41
 
42
- class CompilationError < StandardError
42
+ class CompilationError < SyntaxError
43
43
  end
44
44
 
45
45
  class GeneratorTemplateError < CompilationError
data/lib/herb/project.rb CHANGED
@@ -334,7 +334,7 @@ module Herb
334
334
  puts "```ruby"
335
335
  puts engine.src
336
336
  puts "```"
337
- rescue StandardError
337
+ rescue Herb::Engine::CompilationError, StandardError
338
338
  # Skip if compilation fails entirely
339
339
  end
340
340
  end
@@ -507,7 +507,7 @@ module Herb
507
507
  compilation_error: compilation_error,
508
508
  diagnostics: [{ name: error_name, message: e.message }],
509
509
  log: "⚠️ Compilation failed for #{file_path} (validation error)" }
510
- rescue StandardError
510
+ rescue Herb::Engine::CompilationError, StandardError
511
511
  # Not a validator-caused error, continue with other checks
512
512
  end
513
513
 
@@ -518,7 +518,7 @@ module Herb
518
518
  compilation_error: compilation_error,
519
519
  diagnostics: [{ name: "CompilationError", message: "#{e.message} (strict mode)" }],
520
520
  log: "🔒 Compilation failed for #{file_path} (strict mode error)" }
521
- rescue StandardError
521
+ rescue Herb::Engine::CompilationError, StandardError
522
522
  # Fall through
523
523
  end
524
524
 
data/lib/herb/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
  # typed: true
3
3
 
4
4
  module Herb
5
- VERSION = "0.10.3"
5
+ VERSION = "0.10.4"
6
6
  end
data/sig/herb/engine.rbs CHANGED
@@ -30,7 +30,7 @@ module Herb
30
30
 
31
31
  ESCAPE_TABLE: untyped
32
32
 
33
- class CompilationError < StandardError
33
+ class CompilationError < SyntaxError
34
34
  end
35
35
 
36
36
  class GeneratorTemplateError < CompilationError
@@ -1,6 +1,6 @@
1
1
  #ifndef HERB_VERSION_H
2
2
  #define HERB_VERSION_H
3
3
 
4
- #define HERB_VERSION "0.10.3"
4
+ #define HERB_VERSION "0.10.4"
5
5
 
6
6
  #endif
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: herb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.3
4
+ version: 0.10.4
5
5
  platform: arm-linux-gnu
6
6
  authors:
7
7
  - Marco Roth