-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathicons.gemspec
More file actions
22 lines (16 loc) · 875 Bytes
/
icons.gemspec
File metadata and controls
22 lines (16 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true
require_relative "lib/icons/version"
Gem::Specification.new do |spec|
spec.name = "icons"
spec.version = Icons::VERSION
spec.authors = ["Rails Designer"]
spec.email = ["devs@railsdesigner.com"]
spec.summary = "Add any icon library to a Ruby app"
spec.description = "Add any icon library to a Ruby app, from Heroicons, to Lucide to Phosphor (and others). Icons is library-agnostic, so you can add any library while using the same interface."
spec.homepage = "https://railsdesigner.com/icons/"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/Rails-Designer/icons/"
spec.files = Dir["{bin,config,lib}/**/*", "Rakefile", "README.md", "icons.gemspec", "Gemfile", "Gemfile.lock"]
spec.add_runtime_dependency "nokogiri", "~> 1.16", ">= 1.16.4"
end