nokolexbor 0.3.3-x64-mingw32 → 0.3.4-x64-mingw32

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: bf96f5d702ec86c586d572ceb17d3881f2473e47c965ac5de4bad9fffdb354dc
4
- data.tar.gz: a3e4d040bf82985b3d841bb3e5b36d37ea4490e93255ffdc6a61cd315ee53b65
3
+ metadata.gz: 00ba26b83d2040a2a0a1334edebf3c0f3210801170de093a66eb8583a142d14f
4
+ data.tar.gz: 3a38ddeb389c6da448a66e64dbf2bee707683ff50a22c0d150bc5aeaed4838db
5
5
  SHA512:
6
- metadata.gz: 30fc1a3256f85fd806161dc9e3d63ef9612d364a7a15df8026ffdaae6a8cbaff17a5e4287b58786ccfea2ec05bc7a53803728b3e4383ad501cf77e06912ee13d
7
- data.tar.gz: 055d31655593789ebb2e1789f03862bd1c929259295840907c4005d21e7274b6a79807b443f8ec71381f880943f72441f2a0483844aabbde11c44af3bcd9f63a
6
+ metadata.gz: 974d81de8d825e62399894b62bbd0aeb1fee10d762d2d4b5ccf95b7674fcb2a483be52a82f1c8b737efb9a2052c0e0636c8f52b726621a19f8731bd9c9f2628b
7
+ data.tar.gz: 7738264633cffce68333ef16903afb82102c93f104d840d9b561e8f0e82cadd9e16d0b29b9e98290e4fa0726178bf3cf96c7ac16d7e31c614354b52eaa8c0e77
Binary file
Binary file
Binary file
@@ -145,13 +145,10 @@ module Nokolexbor
145
145
  ancestors.last.css(selector).any? { |node| node == self }
146
146
  end
147
147
 
148
- def attribute(name)
149
- return nil unless key?(name)
150
- Attribute.new(name, attr(name))
151
- end
152
-
153
148
  def attributes
154
- attrs.map { |k, v| [k, Attribute.new(k, v)] }.to_h
149
+ attribute_nodes.each_with_object({}) do |node, hash|
150
+ hash[node.name] = node
151
+ end
155
152
  end
156
153
 
157
154
  def replace(node)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nokolexbor
4
- VERSION = '0.3.3'
4
+ VERSION = '0.3.4'
5
5
  end
data/lib/nokolexbor.rb CHANGED
@@ -26,7 +26,6 @@ require 'nokolexbor/node'
26
26
  require 'nokolexbor/document'
27
27
  require 'nokolexbor/node_set'
28
28
  require 'nokolexbor/document_fragment'
29
- require 'nokolexbor/attribute'
30
29
  require 'nokolexbor/xpath'
31
30
  require 'nokolexbor/xpath_context'
32
31
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nokolexbor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Yicheng Zhou
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-09 00:00:00.000000000 Z
11
+ date: 2023-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
@@ -49,7 +49,6 @@ files:
49
49
  - lib/nokolexbor/2.6/nokolexbor.so
50
50
  - lib/nokolexbor/2.7/nokolexbor.so
51
51
  - lib/nokolexbor/3.0/nokolexbor.so
52
- - lib/nokolexbor/attribute.rb
53
52
  - lib/nokolexbor/document.rb
54
53
  - lib/nokolexbor/document_fragment.rb
55
54
  - lib/nokolexbor/node.rb
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Nokolexbor
4
- class Attribute
5
- attr_accessor :name
6
- attr_accessor :value
7
-
8
- def initialize(name, value)
9
- @name = name
10
- @value = value
11
- end
12
-
13
- alias_method :text, :value
14
- alias_method :content, :value
15
- alias_method :to_s, :value
16
- alias_method :to_str, :value
17
- end
18
- end