-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtailwindcss-ruby.gemspec
25 lines (20 loc) · 1022 Bytes
/
tailwindcss-ruby.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
# frozen_string_literal: true
require_relative "lib/tailwindcss/ruby/version"
Gem::Specification.new do |spec|
spec.name = "tailwindcss-ruby"
spec.version = Tailwindcss::Ruby::VERSION
spec.authors = ["Mike Dalessio", "David Heinemeier Hansson"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = "A self-contained `tailwindcss` executable."
spec.description = "A self-contained `tailwindcss` executable, wrapped up in a ruby gem. That's it. Nothing else."
spec.homepage = "https://github.com/flavorjones/tailwindcss-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/flavorjones/tailwindcss-ruby/blob/main/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir["lib/**/*", "LICENSE.txt", "LICENSE-DEPENDENCIES", "README.md"]
spec.bindir = "exe"
spec.executables << "tailwindcss"
spec.require_paths = ["lib"]
end