-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbridgetown-svg-inliner.gemspec
More file actions
28 lines (22 loc) · 1008 Bytes
/
Copy pathbridgetown-svg-inliner.gemspec
File metadata and controls
28 lines (22 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true
require_relative "lib/bridgetown-svg-inliner/version"
Gem::Specification.new do |spec|
spec.name = "bridgetown-svg-inliner"
spec.version = BridgetownSvgInliner::VERSION
spec.author = "Ayush Newatia"
spec.email = "ayush@hey.com"
spec.summary = "Liquid and ERB helper for Bridgetown to inline SVG files within HTML"
spec.homepage = "https://github.com/ayushn21/bridgetown-svg-inliner"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|script)/!) }
spec.test_files = spec.files.grep(%r!^test/!)
spec.require_paths = ["lib"]
spec.metadata = {}
spec.required_ruby_version = ">= 3.0.0"
spec.add_dependency "bridgetown", ">= 2.0", "< 4.0"
spec.add_dependency "nokogiri"
spec.add_dependency "csv"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rubocop-bridgetown"
end