Skip to content

Commit

Permalink
Rockspec fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
profan committed Jan 13, 2015
1 parent 9659dff commit 7453d24
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 3 deletions.
8 changes: 5 additions & 3 deletions rockspecs/bk-tree-1.0.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
package = "bk-tree"
version = "1.0.0-3"
version = "1.0-1"
source = {
url = "https://github.com/profan/lua-bk-tree/archive/lua-bk-tree-1.0.0.tar.gz"
}

description = {
summary = "BK-trees, commonly used for finding near matches to strings.",
summary = "bk-tree datastructure",
detailed = [[
Burkhard-Keller Trees or bk-trees, a datastructure commonly used for fuzzy string matching, spell checking or similar, comes with a levenshtein distance metric for measuring similarity.
Burkhard-Keller Trees or bk-trees,
a datastructure commonly used for fuzzy
string matching, spell checkign or similar.
]],
homepage = "http://profan.github.io/lua-bk-tree/",
license = "MIT/X11"
Expand Down
27 changes: 27 additions & 0 deletions rockspecs/bk-tree-1.0.0-2.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package = "bk-tree"
version = "1.0.0-2"
source = {
url = "https://github.com/profan/lua-bk-tree/archive/lua-bk-tree-1.0.0.tar.gz"
}

description = {
summary = "BK-trees, commonly used for finding near matches to strings.",
detailed = [[
Burkhard-Keller Trees or bk-trees,
a datastructure commonly used for fuzzy
string matching, spell checking or similar.
]],
homepage = "http://profan.github.io/lua-bk-tree/",
license = "MIT/X11"
}

dependencies = {
"lua >= 5.1"
}

build = {
type = "builtin",
modules = {
["bk-tree"] = "bk-tree.lua"
}
}
25 changes: 25 additions & 0 deletions rockspecs/bk-tree-1.0.0-3.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package = "bk-tree"
version = "1.0.0-3"
source = {
url = "https://github.com/profan/lua-bk-tree/archive/lua-bk-tree-1.0.0.tar.gz"
}

description = {
summary = "BK-trees, commonly used for finding near matches to strings.",
detailed = [[
Burkhard-Keller Trees or bk-trees, a datastructure commonly used for fuzzy string matching, spell checking or similar, comes with a levenshtein distance metric for measuring similarity.
]],
homepage = "http://profan.github.io/lua-bk-tree/",
license = "MIT/X11"
}

dependencies = {
"lua >= 5.1"
}

build = {
type = "builtin",
modules = {
["bk-tree"] = "bk-tree.lua"
}
}

0 comments on commit 7453d24

Please sign in to comment.