Skip to content

Commit

Permalink
Producing rockspec 5.0.2-1
Browse files Browse the repository at this point in the history
  • Loading branch information
daelvn committed Jan 23, 2023
1 parent 3fb3289 commit 930a5a0
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
2 changes: 1 addition & 1 deletion alfons.lua

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions alfons/init.moon
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ sanitize = (pattern) -> pattern\gsub "[%(%)%.%%%+%-%*%?%[%]%^%$]", "%%%0" if pat

-- prefix for modules
-- FIXME roll back from test
PREFIX = "test.alfons."
--PREFIX = "alfons.tasks."
--PREFIX = "test.alfons."
PREFIX = "alfons.tasks."

-- initialize a new environment
initEnv = (run, base=ENVIRONMENT, genv, modname="main", pretty=false) ->
Expand Down
28 changes: 28 additions & 0 deletions rockspecs/alfons-5.0.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
build = {
install = {
bin = {
alfons = "alfons.lua"
}
},
modules = {
["alfons.tasks.fetch"] = "alfons/tasks/fetch.lua"
},
type = "builtin"
}
dependencies = {
"lpath",
"ansikit",
"lua >= 5.1"
}
description = {
detailed = "alfons is a small script utility that lets you run tasks from a file (Lua or MoonScript), to better manage your project with tasks such as clean, compile, etc. To run tasks from a MoonScript file, you will need the moonscript rock.\n",
homepage = "https://github.com/daelvn/alfons",
summary = "Small program to run tasks for your project"
}
package = "alfons"
rockspec_format = "3.0"
source = {
tag = "v5.0.2",
url = "git://github.com/daelvn/alfons"
}
version = "5.0.2-1"

0 comments on commit 930a5a0

Please sign in to comment.