-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheroicons-ruby.gemspec
32 lines (25 loc) · 1.06 KB
/
heroicons-ruby.gemspec
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
29
30
31
32
# frozen_string_literal: true
require_relative "lib/heroicons/version"
Gem::Specification.new do |spec|
spec.name = "heroicons-ruby"
spec.version = Heroicons::VERSION
spec.authors = ["narciero"]
spec.email = ["narciero@me.com"]
spec.summary = "Rails view helpers for Heroicons."
spec.homepage = "https://github.com/narciero/heroicons-ruby"
spec.license = "MIT"
spec.metadata = {
"homepage_uri" => spec.homepage,
"source_code_uri" => "https://github.com/narciero/heroicons-ruby",
"changelog_uri" => "https://github.com/narciero/heroicons-ruby/blob/main/CHANGELOG.md"
}
spec.files = Dir["{lib,icons}/**/*", "LICENSE.txt", "README.md", "CHANGELOG.md"]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.7"
spec.add_runtime_dependency "activesupport", ">= 6.0"
spec.add_runtime_dependency "nokogiri", ">= 1.6"
spec.add_development_dependency "actionview", ">= 6.0"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rubocop", "~> 1.21"
end