-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrustywind-ruby.gemspec
More file actions
29 lines (23 loc) · 1.08 KB
/
rustywind-ruby.gemspec
File metadata and controls
29 lines (23 loc) · 1.08 KB
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/rustywind/ruby/version"
Gem::Specification.new do |spec|
spec.name = "rustywind-ruby"
spec.version = Rustywind::Ruby::VERSION
spec.authors = ["Mark Hesketh"]
spec.email = ["contact@markhesketh.co.uk"]
spec.summary = "Ruby wrapper for rustywind"
spec.description = "A Ruby wrapper for rustywind, a CLI utility for sorting Tailwind CSS classes"
spec.homepage = "https://github.com/markahesketh/rustywind-ruby"
spec.license = "MIT"
spec.files = Dir["lib/**/*", "exe/**/*", "LICENSE.txt", "LICENSE-DEPENDENCIES", "README.md"]
spec.required_ruby_version = ">= 3.1.0"
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/markahesketh/rustywind-ruby/blob/main/CHANGELOG.md"
spec.bindir = "exe"
spec.executables << "rustywind"
spec.require_paths = ["lib"]
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "rubyzip", "~> 2.3"
spec.add_development_dependency "standard", "~> 1.31"
end