svg_guardian 0.0.2-x64-mingw-ucrt → 0.0.4-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: 90aba551630ec8c31877442cd766684ca9fdf7577b6275bb35b6b7abce32ab7b
4
- data.tar.gz: f61ef821f6b4de2c5b6b848f2218c2bf64e8bf12f42ce7ec1e82eb9abd9c7ba0
3
+ metadata.gz: 244992e3877e7e31a2ae375c64cc60d39bc18c05cd1e80682e4cbf483f5c69b6
4
+ data.tar.gz: 58d7a66e02bb2ba4b4d48f2949b7a1f027233216daafe1276251dc1a353ce8e8
5
5
  SHA512:
6
- metadata.gz: bb82cbe9fc59d5500fe1f86c23419c419d1c5adf9860cea87ca13a9dcbb3b2d26cf2ce7868c59c87d375b0dd22dee8ca79e674b3c3e3769da43f57b6d3b41df7
7
- data.tar.gz: 4b0d4d6fcc145d722b15355636d90a119c00213d108f5a156be7e03dc71310439517f1153b060e31f8a3a5878e321f762921594ccefc758969b67b32b1e51f35
6
+ metadata.gz: fafa1ecd28775f703df75d8251bb4367e56001613615732f643eab4da02c4fac06713df4fea5db9b9203ec203b38433b486acf134d5122f418b6ef4dbb656c2a
7
+ data.tar.gz: 0e3871cabc41a1927ba565f35140497640a0cb8410a0d3eccef41158ce945347d92359fb505fa167c6a51cc98d785018a2d476e91153202dbd735743f82ca83c
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
@@ -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.4"
5
5
  end
data/lib/svg_guardian.rb CHANGED
@@ -1,9 +1,15 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ begin
4
+ # load the precompiled extension file
5
+ ruby_version = /(\d+\.\d+)/.match(::RUBY_VERSION)
6
+ require_relative "svg_guardian/#{ruby_version}/svg_guardian"
7
+ rescue LoadError
8
+ require "svg_guardian/svg_guardian"
9
+ end
10
+
3
11
  require_relative "svg_guardian/version"
4
- require_relative "svg_guardian/svg_guardian"
5
12
 
6
13
  module SvgGuardian
7
14
  class SanitizeError < StandardError; end
8
- # Your code goes here...
9
15
  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.4
5
5
  platform: x64-mingw-ucrt
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.1/svg_guardian.so
23
25
  - lib/svg_guardian/3.2/svg_guardian.so