rexle 1.4.13 → 1.5.0
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/lib/rexle.rb +4 -1
- metadata +22 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 29557ab937c5d51df26cebccf32feb7ddf8713c230858f5e9bda2bde53cf0439
|
|
4
|
+
data.tar.gz: 556ba230305c4408c73efb5bb021f7b06831e38a5e999c1c26bf641f273395e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a91cb31a3ed6689f3fdbae798496a09d2a2764959fc1932d78ed0822dc0763502dba18fe18944fffc858116a24469c0c4c44bd10b4123d6a556cfdff026a4156
|
|
7
|
+
data.tar.gz: d9e287db8504eabba3e9d92b835e6a5f6c8f1368b2bc55aa5ed77a92655f240f029ec207bad4ee3baf3885cb0c1c77aabb05f2563212e6d68ae60011cd70987a
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/lib/rexle.rb
CHANGED
|
@@ -7,11 +7,13 @@ require 'rexleparser'
|
|
|
7
7
|
#jr240716 require 'polyrex-parser'
|
|
8
8
|
require 'rexle-css'
|
|
9
9
|
require 'cgi'
|
|
10
|
+
require 'c32'
|
|
10
11
|
require 'backtrack-xpath'
|
|
11
12
|
|
|
12
13
|
|
|
13
14
|
# modifications:
|
|
14
15
|
|
|
16
|
+
# 03-Nov-2018: feature: Debug messages can now easily used coloured text
|
|
15
17
|
# 02-Oct-2018: feature: Added Rexle::Elements#last
|
|
16
18
|
# 18-Jan-2018: bug fix: An Element's attributes are now cloned too
|
|
17
19
|
# 16-Sep-2017: improvement: Multiple results are now returned if the
|
|
@@ -192,6 +194,7 @@ end
|
|
|
192
194
|
|
|
193
195
|
class Rexle
|
|
194
196
|
include XMLhelper
|
|
197
|
+
using ColouredText
|
|
195
198
|
|
|
196
199
|
attr_reader :prefixes, :doctype
|
|
197
200
|
attr_accessor :instructions
|
|
@@ -200,7 +203,7 @@ class Rexle
|
|
|
200
203
|
|
|
201
204
|
@rexle, @debug = rexle, debug
|
|
202
205
|
|
|
203
|
-
puts 'inside Rexle' if debug
|
|
206
|
+
puts 'inside Rexle'.debug if debug
|
|
204
207
|
|
|
205
208
|
super()
|
|
206
209
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rexle
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Robertson
|
|
@@ -35,8 +35,28 @@ cert_chain:
|
|
|
35
35
|
Zdf6ufm6l1fXtBUvl0XuKmNH8p6u/7SmI2oqJoV7Oiarx5i1LrpWL8Zc3q9MFaT4
|
|
36
36
|
pzftGMNXyXUyb9mSx4krfsRT
|
|
37
37
|
-----END CERTIFICATE-----
|
|
38
|
-
date: 2018-
|
|
38
|
+
date: 2018-11-03 00:00:00.000000000 Z
|
|
39
39
|
dependencies:
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: c32
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0.1'
|
|
47
|
+
- - ">="
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: 0.1.0
|
|
50
|
+
type: :runtime
|
|
51
|
+
prerelease: false
|
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
53
|
+
requirements:
|
|
54
|
+
- - "~>"
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: '0.1'
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: 0.1.0
|
|
40
60
|
- !ruby/object:Gem::Dependency
|
|
41
61
|
name: rexleparser
|
|
42
62
|
requirement: !ruby/object:Gem::Requirement
|
metadata.gz.sig
CHANGED
|
Binary file
|