svg_guardian 0.0.2-x64-mingw32 → 0.0.3-x64-mingw32

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: 9c395b55f33f92b61c0ca649d7e46085d433a57682700e43c6039c10b5f8e9b1
4
- data.tar.gz: f69d468712ececa8aec4431723c9ea6c2b0494ff073195330db64d69117648aa
3
+ metadata.gz: 6b2e68b7e92ad11e0355b4e3dd21bd86297b93763779a887aced6642ad64e763
4
+ data.tar.gz: dd174b09b263bcdddbe3337bbcc7b59ce409026af25abd9db425905782e33282
5
5
  SHA512:
6
- metadata.gz: 3fc004faff0f9aed889afbc26c2ee22947134c86ccdf6c58cdb6aef29617b15b8cec52c41272d0a0329fa973bf196e866ff1f6c6bf920d4fa457483c8b36dd73
7
- data.tar.gz: 6b230cdd09737b18b1e1e41bac1e6bcd48984f91f953ccf02fb83fa5baa65dd4e2be7b50f3f17a7e1ce8624390e23924ef06119b7741f0e35fe643d7a203dc12
6
+ metadata.gz: 23d2561e7804c22e6553ceb6e17cd93cd684a3bb6b5dbce5ba994a79d6b3030be14b34ba8c015bc1ee4ac51ce0caf87eff7bd6809f42bfed77526b9b93dbf67b
7
+ data.tar.gz: 3a951639b18829fb3effc52d53b4f6a5a038ed2728273ffce8d98fb0cce370a4ee9ef3c0c7667568d479b0796400c1fbaffbd09d518449ea045a8a3260e7c62e
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
@@ -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: x64-mingw32
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/version.rb