bridgetown-inline-svg 1.0.0

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.
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module BridgetownInlineSvg
4
+ VERSION = "1.0.0"
5
+ end
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: []