selma 0.4.11-x64-mingw-ucrt → 0.4.12-x64-mingw-ucrt

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: 317d8e24b80418714ff52671e734c2e0f2ae1e5ce09826b2f382d32a27c77ac3
4
- data.tar.gz: '0872c012b698a45e0062282fba5a22a9d62489e7423ff79a94097e6c485cdb17'
3
+ metadata.gz: da848171105062be865e16c0fd66004fd4176fb42ee9a816b20939f584870b7b
4
+ data.tar.gz: cdf1df5e1e3f36632b9340bab51d6704465afee0a7bc1e77edce20d5484ef0b1
5
5
  SHA512:
6
- metadata.gz: 14a5f481cd1a6fc9ba49864159f3dce5dbd24b7b7e9c85fec94ea2d55d2f701165adfd575d6ceb4970132b34b9fea8abc3eae53a417e78dab9fd0047c6de2168
7
- data.tar.gz: 2ee30ba82ad72d6bd14ed1093e518585fdcab3cbd1cf731e3977d8626a4a8d491b1d6aa958322fa087a903c55d0257ecee24502d0552570c7f1bb33f21ead53b
6
+ metadata.gz: b603d6fd1f2a4c5a8350aa4a76abf1390cab1be6f25a8f20a72a827d53dada33a15c7945274bcf32a6604853de794165f55c00db5b87c87d53110f1b1c1ee0f2
7
+ data.tar.gz: 8c0052fecb16ea0b337fa6304b103aad6fcc997642da27a8601b7ac6d1aa6a98cdc82c6fde9a6293b8940d3e1a04e17c41d0b94b93a9af350a96dd45cc868eb1
data/README.md CHANGED
@@ -95,8 +95,8 @@ whitespace_elements: ["blockquote", "h1", "h2", "h3", "h4", "h5", "h6", ]
95
95
 
96
96
  The real power in Selma comes in its use of handlers. A handler is simply an object with various methods defined:
97
97
 
98
- - `selector`, a method which MUST return instance of `Selma::Selector` which defines the CSS classes to match
99
- - `handle_element`, a method that's call on each matched element
98
+ - `selector`, a method which MUST return an instance of `Selma::Selector`, defining the CSS classes to match
99
+ - `handle_element`, a method that's called on each matched element
100
100
  - `handle_text_chunk`, a method that's called on each matched text node
101
101
 
102
102
  Here's an example which rewrites the `href` attribute on `a` and the `src` attribute on `img` to be `https` rather than `http`.
Binary file
Binary file
Binary file
data/lib/selma/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Selma
4
- VERSION = "0.4.11"
4
+ VERSION = "0.4.12"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: selma
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.11
4
+ version: 0.4.12
5
5
  platform: x64-mingw-ucrt
6
6
  authors:
7
7
  - Garen J. Torikian
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-29 00:00:00.000000000 Z
11
+ date: 2025-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -49,6 +49,7 @@ files:
49
49
  - README.md
50
50
  - lib/selma.rb
51
51
  - lib/selma/3.2/selma.so
52
+ - lib/selma/3.3/selma.so
52
53
  - lib/selma/3.4/selma.so
53
54
  - lib/selma/config.rb
54
55
  - lib/selma/extension.rb