-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add dev rockspec for nvim plugin to repo
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
-- DO NOT EDIT! Modify template decasify.nvim.rockspec.in and rebuild with `make decasify.nvim-dev-1.rockspec` | ||
|
||
rockspec_format = "3.0" | ||
package = "decasify.nvim" | ||
version = "dev-1" | ||
|
||
source = { | ||
url = "git+https://github.com/alerque/decasify.git", | ||
branch = "master" | ||
} | ||
|
||
description = { | ||
summary = "NeoVIM plugin wrapping decasify crate to cast strings to title-case according to locale specific style guides including Turkish support", | ||
detailed = [[ | ||
A NeoVIM plugin that wraps the decasify library into an editor command that can easily be used in bindings to | ||
provide casing functions for long strings (not just individual words) supporting the grammatical style guides of | ||
various locales including Turkish. | ||
]], | ||
license = "LGPL-3.0-only", | ||
homepage = "https://github.com/alerque/decasify", | ||
issues_url = "https://github.com/alerque/decasify/issues", | ||
maintainer = "Caleb Maclennan <caleb@alerque.com>", | ||
labels = { "i18n" } | ||
} | ||
|
||
dependencies = { | ||
"lua >= 5.1", | ||
"decasify" | ||
} | ||
|
||
build = { | ||
type = "builtin", | ||
copy_directories = { | ||
"plugin", | ||
} | ||
} |