-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-namespace-copy.nvim-1.0.0-1.rockspec
More file actions
43 lines (39 loc) · 1.06 KB
/
ruby-namespace-copy.nvim-1.0.0-1.rockspec
File metadata and controls
43 lines (39 loc) · 1.06 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
rockspec_format = "3.0"
package = "ruby-namespace-copy.nvim"
version = "1.0.0-1"
description = {
summary = "Copy Ruby class/module namespace to clipboard using Tree-sitter",
detailed = [[
A Neovim plugin that uses Tree-sitter to extract and copy the fully qualified
Ruby class/module namespace at the cursor position to the clipboard. Handles
nested modules, classes, and scope resolution syntax (e.g., MyApp::Services::UserCreator).
Essential for large Ruby/Rails codebases.
]],
license = "MIT",
homepage = "https://github.com/matiyas/ruby-namespace-copy.nvim",
issues_url = "https://github.com/matiyas/ruby-namespace-copy.nvim/issues",
maintainer = "matiyas",
labels = {
"neovim",
"neovim-plugin",
"ruby",
"rails",
"tree-sitter",
"treesitter",
"namespace",
"clipboard",
"productivity",
"lua",
},
}
dependencies = {
"lua >= 5.1",
}
source = {
url = "git://github.com/matiyas/ruby-namespace-copy.nvim.git",
tag = "v1.0.0",
}
build = {
type = "builtin",
copy_directories = { "lua", "plugin" },
}