diff --git a/RELEASING.md b/RELEASING.md index 1c6f7f0..2ea4b2b 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -218,11 +218,8 @@ If you want to publish to [LuaRocks](https://luarocks.org/): # Install luarocks CLI if not already installed # See: https://github.com/luarocks/luarocks/wiki/Download -# Login to LuaRocks (first time only) -luarocks login - # Upload the rockspec -luarocks upload copy_with_context-X.Y.Z-1.rockspec +luarocks upload copy_with_context-X.Y.Z-1.rockspec --api-key YOUR_API_KEY ``` **Note:** You need a LuaRocks account and to be a maintainer of the package. diff --git a/copy_with_context-2.1.0-1.rockspec b/copy_with_context-2.1.0-1.rockspec deleted file mode 100644 index 8fe3e84..0000000 --- a/copy_with_context-2.1.0-1.rockspec +++ /dev/null @@ -1,23 +0,0 @@ -package = "copy_with_context" -version = "2.1.0-1" -source = { - url = "git://github.com/zhisme/copy_with_context.nvim.git", - tag = "v2.1.0" -} -description = { - summary = "A Neovim plugin for copying with context", - detailed = [[Copy lines with file path and line number metadata. Perfect for sharing code snippets with context.]], - homepage = "https://github.com/zhisme/copy_with_context.nvim", - license = "MIT" -} -dependencies = { - "luacheck >= 0.25.0", - "busted >= 2.0.0", - "lua >= 5.1" -} -build = { - type = "builtin", - modules = { - ["copy_with_context"] = "lua/copy_with_context/init.lua", - } -}