From 968ca0d71a2eb78813168fc0d0ebd8b700654543 Mon Sep 17 00:00:00 2001 From: jtzero ? Date: Tue, 2 Jul 2024 09:52:01 -0400 Subject: [PATCH] fixes rockspec build reference --- go-to-test-file.nvim-1.0.1-1.rockspec | 31 --------------------------- go-to-test-file.nvim-1.0.2-1.rockspec | 31 +++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 31 deletions(-) delete mode 100644 go-to-test-file.nvim-1.0.1-1.rockspec create mode 100644 go-to-test-file.nvim-1.0.2-1.rockspec diff --git a/go-to-test-file.nvim-1.0.1-1.rockspec b/go-to-test-file.nvim-1.0.1-1.rockspec deleted file mode 100644 index eb00ef7..0000000 --- a/go-to-test-file.nvim-1.0.1-1.rockspec +++ /dev/null @@ -1,31 +0,0 @@ -package = "go-to-test-file.nvim" -version = "1.0.1-1" -source = { - url = "git://github.com/jtzero/go-to-test-file.nvim.git" -} -description = { - homepage = "https://github.com/jtzero/go-to-test-file.nvim.git", - license = "MIT" -} -dependencies = { - "lua >= 5.1, < 5.2", - "vusted >= 2.3.4-1, < 3", - "plenary.nvim >= scm-1" -} -build = { - type = "builtin", - modules = { - ["go-to-test-file"] = "lua/go-to-test-file.lua", - ["go-to-test-file.cmd"] = "lua/go-to-test-file/cmd.lua", - ["go-to-test-file.git"] = "lua/go-to-test-file/git.lua", - ["go-to-test-file.list"] = "lua/go-to-test-file/list.lua", - ["go-to-test-file.matrix"] = "lua/go-to-test-file/matrix.lua", - ["go-to-test-file.path"] = "lua/go-to-test-file/path.lua", - ["go-to-test-file.peer"] = "lua/go-to-test-file/peer.lua", - ["go-to-test-file.peer_dunder_tests"] = "lua/go-to-test-file/peer_dunder_tests.lua", - ["go-to-test-file.project_generic"] = "lua/go-to-test-file/project_generic.lua", - ["go-to-test-file.root_tests"] = "lua/go-to-test-file/root_tests.lua", - ["go-to-test-file.str"] = "lua/go-to-test-file/str.lua", - ["go-to-test-file.system"] = "lua/go-to-test-file/system.lua" - } -} diff --git a/go-to-test-file.nvim-1.0.2-1.rockspec b/go-to-test-file.nvim-1.0.2-1.rockspec new file mode 100644 index 0000000..8f58f91 --- /dev/null +++ b/go-to-test-file.nvim-1.0.2-1.rockspec @@ -0,0 +1,31 @@ +package = "go-to-test-file.nvim" +version = "1.0.2-1" +source = { + url = "git://github.com/jtzero/go-to-test-file.nvim.git" +} +description = { + homepage = "https://github.com/jtzero/go-to-test-file.nvim.git", + license = "MIT" +} +dependencies = { + "lua >= 5.1, < 5.2", + "vusted >= 2.3.4-1, < 3", + "plenary.nvim >= scm-1" +} +build = { + type = "builtin", + modules = { + ["go_to_test_file"] = "lua/go_to_test_file.lua", + ["go_to_test_file.cmd"] = "lua/go_to_test_file/cmd.lua", + ["go_to_test_file.git"] = "lua/go_to_test_file/git.lua", + ["go_to_test_file.list"] = "lua/go_to_test_file/list.lua", + ["go_to_test_file.matrix"] = "lua/go_to_test_file/matrix.lua", + ["go_to_test_file.path"] = "lua/go_to_test_file/path.lua", + ["go_to_test_file.peer"] = "lua/go_to_test_file/peer.lua", + ["go_to_test_file.peer_dunder_tests"] = "lua/go_to_test_file/peer_dunder_tests.lua", + ["go_to_test_file.project_generic"] = "lua/go_to_test_file/project_generic.lua", + ["go_to_test_file.root_tests"] = "lua/go_to_test_file/root_tests.lua", + ["go_to_test_file.str"] = "lua/go_to_test_file/str.lua", + ["go_to_test_file.system"] = "lua/go_to_test_file/system.lua" + } +}