Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
moteus committed Dec 23, 2013
1 parent a1b8a4c commit bb06278
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lua/path/module.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
return{
_NAME = "PATH lua library";
_VERSION = nil;
_VERSION = "0.2.0";
}
46 changes: 46 additions & 0 deletions rockspecs/lua-path-0.2.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
package = "lua-path"
version = "0.2.0-1"
source = {
url = "https://github.com/moteus/lua-path/archive/v0.2.0.zip",
dir = "lua-path-0.2.0",
}

description = {
summary = "File system path manipulation library",
detailed = [[
]],
homepage = "https://github.com/moteus/lua-path",
license = "MIT/X11",
}

dependencies = {
"lua >= 5.1, < 5.3",
-- "luafilesystem >= 1.4",
-- "alien >= 0.7.0", -- instead lfs on windows
}

build = {
type = "builtin",
copy_directories = {
"test",
},
modules = {
["path" ] = "lua/path.lua",
["path.fs" ] = "lua/path/fs.lua",
["path.findfile" ] = "lua/path/findfile.lua",
["path.lfs.fs" ] = "lua/path/lfs/fs.lua",
["path.module" ] = "lua/path/module.lua",
["path.win32.alien.fs" ] = "lua/path/win32/alien/fs.lua",
["path.win32.alien.types" ] = "lua/path/win32/alien/types.lua",
["path.win32.alien.utils" ] = "lua/path/win32/alien/utils.lua",
["path.win32.alien.wcs" ] = "lua/path/win32/alien/wcs.lua",
["path.win32.ffi.fs" ] = "lua/path/win32/ffi/fs.lua",
["path.win32.ffi.types" ] = "lua/path/win32/ffi/types.lua",
["path.win32.ffi.wcs" ] = "lua/path/win32/ffi/wcs.lua",
["path.win32.fs" ] = "lua/path/win32/fs.lua",
["path.win32.wcs" ] = "lua/path/win32/wcs.lua",
}
}



0 comments on commit bb06278

Please sign in to comment.