-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind_sorter.gemspec
29 lines (23 loc) · 1.04 KB
/
tailwind_sorter.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/tailwind_sorter/version"
Gem::Specification.new do |spec|
spec.name = "tailwind-sorter"
spec.version = TailwindSorter::VERSION
spec.authors = ["NejŘemeslníci.cz"]
spec.email = ["support@nejremeslnici.cz"]
spec.summary = "Customizable TailwindCSS classes sorter"
spec.description = "Simple but customizable sorter for TailwindCSS classes"
spec.homepage = "https://github.com/NejRemeslnici/tailwind-sorter"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/NejRemeslnici/tailwind-sorter"
spec.metadata["changelog_uri"] = "https://github.com/NejRemeslnici/tailwind-sorter"
# Specify which files should be added to the gem when it is released.
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{exe,lib}/**/*", "Rakefile", "README.md", "CHANGELOG.md"]
end
spec.bindir = "exe"
spec.executables << "tailwind_sorter"
spec.require_paths = ["lib"]
end