datauris 1.1.1 → 1.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 89ab6159a9beb6750504017159f5d0e0391c78ea965aaea0d705531299bae7b1
4
- data.tar.gz: 87bc327d253eb5464e47dbb2ef2d4770da2caacda008aac0ae8c8ad0b8f74483
3
+ metadata.gz: ab2d170cf6bfa2e0cfac039e523acb19fe18fad89fd297185a1047f1819ffdc5
4
+ data.tar.gz: '0419a2803baa32773809ead98488fdf8dc5e5a7b4ec34413799008ee922692e7'
5
5
  SHA512:
6
- metadata.gz: bd984682f79f95f7170e023a4f1aa8a048339010e71ee984958c528a7c5bf7a8d6102d90398e636bf27c553cd88f38bae4417708ec6367e7ee713fe84b96620f
7
- data.tar.gz: 0ebfd59f4ca9aa3ee881c5a5eab954d4ecd3691594418fc35b1709468d1012ede78139e180b47a700c25f796d8f2e827a1c76734b6aefb236f27e79fc5c0cf8d
6
+ metadata.gz: 2bfc64e92ac81ff9cfe789069886482d19232e23899cd02e083abb52d0cc92ec30f94f9618506ff092b3143fbe0623881efaf9d938330603ef8d23efaaf1a898
7
+ data.tar.gz: 2c3ff3a3a2e31c588786aed7250e7eb107fac1fb5c506b3cc5d3b4f8a47a94db68bcbc2cbabf04423480020c9c0febe9aa4bf161cdbdf2b3b34386c781dfbe12
data/CHANGELOG.md CHANGED
@@ -1,3 +1,4 @@
1
+ ### 1.2.0
1
2
  ### 1.1.1
2
3
  ### 0.0.1 / 2023-11-23
3
4
 
data/README.md CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  datauris - helpers to parse (decode) and build (encode) data uris incl. (strict) base64-encoded/decoded images and more
4
4
 
5
- * home :: [github.com/s6ruby/rubidity](https://github.com/s6ruby/rubidity)
6
- * bugs :: [github.com/s6ruby/rubidity/issues](https://github.com/s6ruby/rubidity/issues)
5
+ * home :: [github.com/0xCompute/ethscribe](https://github.com/0xCompute/ethscribe)
6
+ * bugs :: [github.com/0xCompute/ethscribe/issues](https://github.com/0xCompute/ethscribe/issues)
7
7
  * gem :: [rubygems.org/gems/datauris](https://rubygems.org/gems/datauris)
8
8
  * rdoc :: [rubydoc.info/gems/datauris](http://rubydoc.info/gems/datauris)
9
9
 
@@ -167,7 +167,9 @@ at the ruby code commons (rubycocos) org.
167
167
 
168
168
  ## Questions? Comments?
169
169
 
170
- Join us in the [Rubidity (community) discord (chat server)](https://discord.gg/3JRnDUap6y). Yes you can.
170
+ Join us in the [0xCompute discord (chat server)](https://discord.gg/3JRnDUap6y)
171
+ (or in the more general Ethscription discord).
172
+ Yes you can.
171
173
  Your questions and commentary welcome.
172
174
 
173
175
  Or post them over at the [Help & Support](https://github.com/geraldb/help) page. Thanks.
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ Hoe.spec 'datauris' do
8
8
  self.summary = "datauris gem - DataUri helpers to parse (decode) and build (encode) data uris incl. (strict) base64-encoded/decoded images and more"
9
9
  self.description = summary
10
10
 
11
- self.urls = { home: 'https://github.com/s6ruby/rubidity' }
11
+ self.urls = { home: 'https://github.com/0xCompute/ethscribe' }
12
12
 
13
13
  self.author = 'Gerald Bauer'
14
14
  self.email = 'gerald.bauer@gmail.com'
@@ -1,8 +1,8 @@
1
1
 
2
2
  module DataUri
3
- MAJOR = 1 ## todo: namespace inside version or something - why? why not??
4
- MINOR = 1
5
- PATCH = 1
3
+ MAJOR = 1 ## todo: namespace inside version or something - why? why not??
4
+ MINOR = 2
5
+ PATCH = 0
6
6
  VERSION = [MAJOR,MINOR,PATCH].join('.')
7
7
 
8
8
  def self.version
data/lib/datauris.rb CHANGED
@@ -57,9 +57,13 @@ module DataUri
57
57
  (?<extension>base64|utf8)
58
58
  )?
59
59
  ,
60
- (?<data>.*)
60
+ (?<data>
61
+ (?:.|[\n\r])*
62
+ )
61
63
  \z
62
64
  }x
65
+
66
+ ## note (?<data>.*) - . (dot) will NOT include newlines!!!
63
67
 
64
68
 
65
69
  def self._parse( str ) REGEX.match( str ); end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: datauris
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gerald Bauer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-27 00:00:00.000000000 Z
11
+ date: 2024-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rdoc
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '4.0'
39
+ version: '4.1'
40
40
  type: :development
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '4.0'
46
+ version: '4.1'
47
47
  description: datauris gem - DataUri helpers to parse (decode) and build (encode)
48
48
  data uris incl. (strict) base64-encoded/decoded images and more
49
49
  email: gerald.bauer@gmail.com
@@ -61,7 +61,7 @@ files:
61
61
  - lib/datauri.rb
62
62
  - lib/datauris.rb
63
63
  - lib/datauris/version.rb
64
- homepage: https://github.com/s6ruby/rubidity
64
+ homepage: https://github.com/0xCompute/ethscribe
65
65
  licenses:
66
66
  - Public Domain
67
67
  metadata: {}