-
Notifications
You must be signed in to change notification settings - Fork 1
/
fox_tail.gemspec
29 lines (23 loc) · 1.17 KB
/
fox_tail.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
# frozen_string_literal: true
require_relative "lib/fox_tail/version"
Gem::Specification.new do |spec|
spec.name = "fox_tail"
spec.version = FoxTail::VERSION
spec.authors = ["James Fawks"]
spec.email = ["[email protected]"]
spec.summary = "Unofficial Rails View Components built for Flowbite and Tailwind CSS"
spec.description = "UI View Component library built on top of Tailwind CSS and based on the Flowbite Design System."
spec.homepage = "https://github.com/jefawks3/fox_tail"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/jefawks3/fox_tail"
spec.metadata["changelog_uri"] = "https://github.com/jefawks3/fox_tail/releases"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir["LICENSE", "README.md", "app/**/*", "config/**/*", "lib/**/*"]
spec.require_paths = ["lib"]
spec.add_dependency "railties", ">= 5.2.0"
spec.add_dependency "tailwind_merge", "~> 0.7"
spec.add_runtime_dependency "view_component", "~> 3.0"
end