-
Notifications
You must be signed in to change notification settings - Fork 12
/
ultimate_turbo_modal.gemspec
32 lines (26 loc) · 1.26 KB
/
ultimate_turbo_modal.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/ultimate_turbo_modal/version"
Gem::Specification.new do |spec|
spec.name = "ultimate_turbo_modal"
spec.version = UltimateTurboModal::VERSION
spec.authors = ["Carl Mercier"]
spec.email = ["[email protected]"]
spec.summary = "UTMR aims to be the be-all and end-all of Turbo Modals."
spec.description = "An easy-to-use, flexible, and powerful Turbo Modal solution for Rails 7+ built with Stimulus.js, Tailwind CSS (or vanilla CSS) and Hotwire."
spec.homepage = "https://github.com/cmer/ultimate_turbo_modal"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/cmer/ultimate_turbo_modal"
spec.metadata["changelog_uri"] = "https://github.com/cmer/ultimate_turbo_modal/CHANGELOG.md"
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor])
end
end
spec.require_paths = ["lib"]
spec.add_dependency "phlex-rails", ">= 1.0", "< 2.0"
spec.add_dependency "rails", ">= 7"
spec.add_dependency "stimulus-rails"
spec.add_dependency "turbo-rails"
end