forked from jsundt/svg_inliner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
svg_inliner.gemspec
23 lines (18 loc) · 1.01 KB
/
svg_inliner.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "svg_inliner/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "svg_inliner"
s.version = SvgInliner::VERSION
s.authors = ["Jørgen Sundt"]
s.email = ["jorgen@theeleven.co.uk"]
s.homepage = "https://github.com/jsundt/svg_inliner"
s.summary = "Grabs svg symbols from a svg file and embeds them as inline svg in your views."
s.description = "Sacrifice a bit of speed for a lot of flexibility. Easily add animated icons or icons with multiple layers of css styling. Inlining the svgs ensures the best browser support, removes load flashing and gives you easy access to style every icon separately based on hover or other events."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency 'rails', '>= 6.0'
s.add_dependency 'nokogiri', '>= 1.6.8'
end