-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathheroicon.gemspec
31 lines (24 loc) · 1.01 KB
/
heroicon.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "heroicon/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "heroicon"
spec.version = Heroicon::VERSION
spec.authors = ["Benjamin Hargett"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/bharget/heroicon"
spec.summary = "Rails View Helpers for Heroicons."
spec.description = "Ruby on Rails view helpers for the beautiful hand-crafted SVG icons, Heroicons."
spec.license = "MIT"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.required_ruby_version = ">= 2.5"
spec.add_dependency "rails", ">= 5.2"
spec.add_development_dependency "appraisal"
spec.add_development_dependency "pry"
spec.add_development_dependency "pry-rails"
spec.add_development_dependency "standard"
spec.add_development_dependency "sqlite3"
spec.add_development_dependency "mocha"
end