svg_guardian 0.0.2-x86_64-darwin

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 371037b55b7b82bbe9e457ef61419fca17dd39a0a6104b4d512747e377be33af
4
+ data.tar.gz: 5f5b3f241eafa2b894833530e4000f861faa806ca2dc4564456d8caa876d11b5
5
+ SHA512:
6
+ metadata.gz: ab1d957e0fd958cf40ec459eb675fd9a276d70dab1fbebbc170ef82abb6af371b041ecf2ea27e62dca364fb6a5f9d7f501c846053ded464e1e8bae1204515a6c
7
+ data.tar.gz: 21f32b5fb814e2ac8583b452a38009b271e77b221ecb38585cde723743f91a7f5ba7d2f73afd1e74932e7f95e4e123a917ccf29082ebb123b013fd17292316ae
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # SvgGuardian
2
+
3
+ Tiny wrapper around [svg-hush](https://github.com/cloudflare/svg-hush) to sanitize SVGs.
4
+
5
+ ## Usage
6
+
7
+ Add SvgGuardian to your `Gemfile`:
8
+
9
+ ```
10
+ gem 'svg_guardian'
11
+ ```
12
+
13
+ To sanitize SVG file call `#sanitize` method:
14
+
15
+ ```ruby
16
+ SvgGuardian.sanitize("your svg file content")
17
+ ```
18
+
19
+ ## Development
20
+
21
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
22
+
23
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
24
+
25
+ ## Contributing
26
+
27
+ Bug reports and pull requests are welcome on GitHub at https://github.com/Yuma-AI/svg_guardian.
28
+
29
+ ## License
30
+
31
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SvgGuardian
4
+ VERSION = "0.0.2"
5
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "svg_guardian/version"
4
+ require_relative "svg_guardian/svg_guardian"
5
+
6
+ module SvgGuardian
7
+ class SanitizeError < StandardError; end
8
+ # Your code goes here...
9
+ end
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: svg_guardian
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: x86_64-darwin
6
+ authors:
7
+ - Alex Beznos
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-11-07 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - alex@yuma.ai
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - lib/svg_guardian.rb
22
+ - lib/svg_guardian/3.0/svg_guardian.bundle
23
+ - lib/svg_guardian/3.1/svg_guardian.bundle
24
+ - lib/svg_guardian/3.2/svg_guardian.bundle
25
+ - lib/svg_guardian/version.rb
26
+ homepage: https://github.com/Yuma-AI/svg_guardian
27
+ licenses:
28
+ - MIT
29
+ metadata:
30
+ homepage_uri: https://github.com/Yuma-AI/svg_guardian
31
+ source_code_uri: https://github.com/Yuma-AI/svg_guardian
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '3.0'
41
+ - - "<"
42
+ - !ruby/object:Gem::Version
43
+ version: 3.3.dev
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: 3.3.11
49
+ requirements: []
50
+ rubygems_version: 3.4.4
51
+ signing_key:
52
+ specification_version: 4
53
+ summary: Tiny wrapper around svg-hush to sanitize SVGs.
54
+ test_files: []