sanscript 0.6.1 → 0.6.2

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
  SHA1:
3
- metadata.gz: 7faf23075373caded757c32e4e708d85e6e39c10
4
- data.tar.gz: 049ea58c3690d4dc6627d6a8a205f19914e69b33
3
+ metadata.gz: 59fade123e6369dd8e65f40aef416b1f3ceb6246
4
+ data.tar.gz: 4c010e1ca0999f576a8485d385e825fd3cd98a3e
5
5
  SHA512:
6
- metadata.gz: a8bf83a24936460b5331580b094bac0c3aff7e6db4b7839e4fe46b282161ff4d927aa5af8e5fa76afdea3eeb72ecd5353e7f32f15db5bc49bd02153d317ae4e1
7
- data.tar.gz: bc16c1526a2d3c89c047c7dbe4b27e5698a7aeb59822505006f2da6e6b7237fb15b7ecd3870ba6b024bb244bcb62912e5ac83cf915e0166f64d9e48d1f4ae77f
6
+ metadata.gz: 9d2fc3ef1c990703a8f4c5a2e69f6eb535dca84600b375cd030cbc8e1bb30baa2447c7de4d0634afb3303389dd24b5e3a144bce9ac6f8b883768473d8b8d5cc9
7
+ data.tar.gz: 98a910e4a950ad13ae0501cb3eb9ca841a4f049a42ce46989e6f12ff7d2ad1105a5083b4ae4496878bd6f001b9f29fa1a7323833c42c7234cc23193a6edc82b5
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
  module Sanscript
3
3
  # The version number
4
- VERSION = "0.6.1"
4
+ VERSION = "0.6.2"
5
5
 
6
6
  GEM_ROOT = Pathname.new(File.realpath(File.join(__dir__, "..", "..")))
7
7
  private_constant :GEM_ROOT
data/src/lib.rs CHANGED
@@ -14,7 +14,7 @@ methods! {
14
14
  fn detect(s: RString) -> AnyObject {
15
15
  lazy_static! {
16
16
  // # Match escaped control characters
17
- static ref RE_ESCAPED_CONTROL_CHAR: Regex = Regex::new(r"\\(?:\{#|\##|\#})").unwrap();
17
+ static ref RE_ESCAPED_CONTROL_CHAR: Regex = Regex::new(r"\\(?:\{#|##|#\})").unwrap();
18
18
 
19
19
  // # Match ##...## or {#...#} control blocks.
20
20
  static ref RE_CONTROL_BLOCK: Regex = Regex::new(r"##.*?##|\{#.*?#\}").unwrap();
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sanscript
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Bellefleur