bridgetown-inline-svg 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gem_release.yml +4 -0
- data/.github/CODEOWNERS +1 -0
- data/.github/FUNDING.yml +12 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +24 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +24 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +23 -0
- data/.github/workflows/linters.yml +34 -0
- data/.github/workflows/pr_tests.yml +31 -0
- data/.github/workflows/tests.yml +33 -0
- data/.gitignore +39 -0
- data/.rspec +2 -0
- data/.solargraph.yml +15 -0
- data/.vscode/settings.json +26 -0
- data/CHANGELOG.md +10 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/CONTRIBUTING.md +24 -0
- data/Gemfile +18 -0
- data/LICENSE +674 -0
- data/README.md +139 -0
- data/Rakefile +8 -0
- data/SECURITY.md +14 -0
- data/_README.md +5 -0
- data/bin/check +3 -0
- data/bin/checks/standardrb +4 -0
- data/bin/console +14 -0
- data/bin/format +3 -0
- data/bin/formatters/standardrb +4 -0
- data/bin/rspec +29 -0
- data/bin/setup +8 -0
- data/bin/standardrb +29 -0
- data/bridgetown-inline-svg.gemspec +37 -0
- data/lib/bridgetown-inline-svg.rb +9 -0
- data/lib/bridgetown-inline-svg/svg-tag.rb +142 -0
- data/lib/bridgetown-inline-svg/version.rb +5 -0
- metadata +132 -0
metadata
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bridgetown-inline-svg
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Andrew Mason
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-07-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bridgetown
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.15'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '2.0'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.15'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '2.0'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: svg_optimizer
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: 0.2.5
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 0.2.5
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: nokogiri
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '1.6'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '1.6'
|
61
|
+
description: |2
|
62
|
+
A Liquid tag to inline and optimize SVG images in your HTML
|
63
|
+
Supports custom DOM Attributes parameters and variables interpretation.
|
64
|
+
email:
|
65
|
+
- andrewmcodes@protonmail.com
|
66
|
+
executables: []
|
67
|
+
extensions: []
|
68
|
+
extra_rdoc_files: []
|
69
|
+
files:
|
70
|
+
- ".gem_release.yml"
|
71
|
+
- ".github/CODEOWNERS"
|
72
|
+
- ".github/FUNDING.yml"
|
73
|
+
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
74
|
+
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
75
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
76
|
+
- ".github/workflows/linters.yml"
|
77
|
+
- ".github/workflows/pr_tests.yml"
|
78
|
+
- ".github/workflows/tests.yml"
|
79
|
+
- ".gitignore"
|
80
|
+
- ".rspec"
|
81
|
+
- ".solargraph.yml"
|
82
|
+
- ".vscode/settings.json"
|
83
|
+
- CHANGELOG.md
|
84
|
+
- CODE_OF_CONDUCT.md
|
85
|
+
- CONTRIBUTING.md
|
86
|
+
- Gemfile
|
87
|
+
- LICENSE
|
88
|
+
- README.md
|
89
|
+
- Rakefile
|
90
|
+
- SECURITY.md
|
91
|
+
- _README.md
|
92
|
+
- bin/check
|
93
|
+
- bin/checks/standardrb
|
94
|
+
- bin/console
|
95
|
+
- bin/format
|
96
|
+
- bin/formatters/standardrb
|
97
|
+
- bin/rspec
|
98
|
+
- bin/setup
|
99
|
+
- bin/standardrb
|
100
|
+
- bridgetown-inline-svg.gemspec
|
101
|
+
- lib/bridgetown-inline-svg.rb
|
102
|
+
- lib/bridgetown-inline-svg/svg-tag.rb
|
103
|
+
- lib/bridgetown-inline-svg/version.rb
|
104
|
+
homepage: https://github.com/andrewmcodes/bridgetown-inline-svg
|
105
|
+
licenses:
|
106
|
+
- GPL-3.0
|
107
|
+
metadata:
|
108
|
+
bug_tracker_uri: https://github.com/andrewmcodes/bridgetown-inline-svg/issues
|
109
|
+
changelog_uri: https://github.com/andrewmcodes/bridgetown-inline-svg/blob/main/CHANGELOG.md
|
110
|
+
documentation_uri: https://github.com/andrewmcodes/bridgetown-inline-svg
|
111
|
+
homepage_uri: https://github.com/andrewmcodes/bridgetown-inline-svg
|
112
|
+
source_code_uri: https://github.com/andrewmcodes/bridgetown-inline-svg
|
113
|
+
post_install_message:
|
114
|
+
rdoc_options: []
|
115
|
+
require_paths:
|
116
|
+
- lib
|
117
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ">="
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: 2.5.0
|
122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
123
|
+
requirements:
|
124
|
+
- - ">="
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: '0'
|
127
|
+
requirements: []
|
128
|
+
rubygems_version: 3.1.2
|
129
|
+
signing_key:
|
130
|
+
specification_version: 4
|
131
|
+
summary: A SVG Inliner for Bridgetown
|
132
|
+
test_files: []
|