-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathirelia.gemspec
25 lines (21 loc) · 992 Bytes
/
irelia.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
require_relative "lib/irelia/version"
Gem::Specification.new do |spec|
spec.name = "irelia"
spec.version = Irelia::VERSION
spec.authors = [ "Rasmus Kjellberg" ]
spec.email = [ "[email protected]" ]
spec.homepage = "https://kiqr.dev"
spec.summary = "Default theme for KIQR"
spec.description = "View components, assets and styles built with Tailwind CSS for KIQR."
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/kiqr/irelia"
spec.metadata["changelog_uri"] = "https://github.com/kiqr/irelia"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "view_component", "~> 3.12"
spec.add_dependency "view_component-contrib", "~> 0.2.2"
spec.add_dependency "dry-initializer", "~> 3.1"
spec.add_dependency "lookbook", "~> 2.3.2"
end