-
Notifications
You must be signed in to change notification settings - Fork 0
/
atomic_view.gemspec
31 lines (26 loc) · 1.22 KB
/
atomic_view.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
require_relative "lib/atomic_view/version"
Gem::Specification.new do |spec|
spec.name = "atomic_view"
spec.version = AtomicView::VERSION
spec.authors = ["Joel Warrington"]
spec.email = ["[email protected]"]
spec.summary = "Component library built for Ruby on Rails with first-class support for ActionView using ViewComponent."
spec.homepage = "https://github.com/joelzwarrington/atomic_view"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.6.0"
spec.metadata = {
"homepage_uri" => "https://github.com/joelzwarrington/atomic_view",
"changelog_uri" => "https://github.com/joelzwarrington/atomic_view/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/joelzwarrington/atomic_view",
"bug_tracker_uri" => "https://github.com/joelzwarrington/atomic_view/issues",
"rubygems_mfa_required" => "true"
}
spec.files = Dir["CHANGELOG.md", "LICENSE.txt", "README.md", "lib/**/*"]
spec.add_dependency "zeitwerk", "~> 2.6.17"
spec.add_dependency "rails", "> 7.2.0"
spec.add_dependency "view_component", "~> 3.13"
spec.add_dependency "tailwindcss-rails", "~> 2.7"
spec.add_dependency "tailwind_merge", "~> 0.12"
spec.add_dependency "heroicons", "~> 2.0"
end