svg_guardian 0.0.2-x86_64-linux → 0.0.3-x86_64-linux

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: a6f0cb117ca153bbc89c6b4fc19360c0f9f0a38f8866e8b00cd1cedb8e29a2d3
4
- data.tar.gz: 4a0d29721b2be2c2abf5d8461155502b1dd12bc6f34616556bd2aa86bdf16a72
3
+ metadata.gz: 004b9bfcf063d417af17d89101a1e0fc8ed4aaf02b2a2420e868ff486f9be44c
4
+ data.tar.gz: ebaaf084a4a9acb4c0d585ac7dc2badde795707b845a4d000095624314ad0271
5
5
  SHA512:
6
- metadata.gz: a286d1aba6a3bbf1f71cee56c57e081fe5f3904cf94a280a1086b4f59f714aad34574626ecb5e9471e5233ed86a5ab8d417060e6c9f4e2c77a8a25d78020780c
7
- data.tar.gz: 84c2b5d80782695c0813191cf5d088df045bc09b0a6693a6ee351a0f817a778f5e56111243a239b9b958e91b188da0f60c0febd25373bb2cdad54a7e6b231087
6
+ metadata.gz: cb0db5ec9a32a73a6f7f9091b3cbb0f5f73ac1621f0e39cad002064f65ceb98226ed3b3c65a95c5f8498bcb83a3802bbc2d557ff66989d72bce8d41816546b02
7
+ data.tar.gz: 2d85286b5cd854af50b953e314193e30cea456771e331ce59df7491a595e3129e199c73fad0911b1ba13faeb44b430bb2cfc61234e1bdd84eef86f6531a060c3
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Alex Beznos
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
5
+ require "rb_sys/extensiontask"
6
+
7
+ Rake::TestTask.new(:test) do |t|
8
+ t.libs << "test"
9
+ t.libs << "lib"
10
+ t.test_files = FileList["test/**/test_*.rb"]
11
+ end
12
+
13
+ require "standard/rake"
14
+
15
+ spec = Bundler.load_gemspec("svg_guardian.gemspec")
16
+
17
+ RbSys::ExtensionTask.new("svg_guardian", spec) do |ext|
18
+ ext.lib_dir = "lib/svg_guardian"
19
+ ext.cross_compile = true
20
+ end
21
+
22
+ task build: :compile
23
+ task default: %i[compile test standard]
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SvgGuardian
4
- VERSION = "0.0.2"
4
+ VERSION = "0.0.3"
5
5
  end
data/lib/svg_guardian.rb CHANGED
@@ -5,5 +5,4 @@ require_relative "svg_guardian/svg_guardian"
5
5
 
6
6
  module SvgGuardian
7
7
  class SanitizeError < StandardError; end
8
- # Your code goes here...
9
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: svg_guardian
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Alex Beznos
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-07 00:00:00.000000000 Z
11
+ date: 2023-11-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -17,7 +17,9 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
+ - LICENSE.txt
20
21
  - README.md
22
+ - Rakefile
21
23
  - lib/svg_guardian.rb
22
24
  - lib/svg_guardian/3.0/svg_guardian.so
23
25
  - lib/svg_guardian/3.1/svg_guardian.so