Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions rocks/lua-requests-1.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package = "lua-requests"
version = "1.2-1"
source = {
url = "git://github.com/JakobGreen/lua-requests.git"
}
description = {
summary = "HTTP requests made easy! Support for HTTPS, Basic Auth, Digest Auth. HTTP response parsing has never been easier!",
detailed = [[Similar to Requests for python.
The goal of lua-requests is to make HTTP simple and easy to use.
Currently HTTPS, Basic Authentication, and Digest Authentication are supported.
Checkout the wiki on the github page for more details. Written in pure lua!
]],
homepage = "http://github.com/JakobGreen/lua-requests",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
"lbase64",
"luasocket",
"md5",
"lua-cjson == 2.1.0-1",
"xml",
"luasec >= 0.5.1"
}
build = {
type = "builtin",
modules = {
requests = "src/requests.lua"
}
}