-
Notifications
You must be signed in to change notification settings - Fork 1
/
auth-scm-1.rockspec
34 lines (32 loc) · 1.09 KB
/
auth-scm-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package = 'auth'
version = 'scm-1'
source = {
url = 'git://github.com/LinnikD/tarantool-auth.git',
branch = 'master',
}
description = {
summary = "",
homepage = 'https://github.com/LinnikD/tarantool-auth.git',
license = 'BSD',
}
dependencies = {
'lua >= 5.1'
}
build = {
type = 'builtin',
modules = {
['auth.model.password'] = 'auth/model/password.lua',
['auth.model.password_token'] = 'auth/model/password_token.lua',
['auth.model.session'] = 'auth/model/session.lua',
['auth.model.social'] = 'auth/model/social.lua',
['auth.model.user'] = 'auth/model/user.lua',
['auth.utils.http'] = 'auth/utils/http.lua',
['auth.utils.utils'] = 'auth/utils/utils.lua',
['auth.validator'] = 'auth/validator.lua',
['auth.response'] = 'auth/response.lua',
['auth.error'] = 'auth/error.lua',
['auth.db'] = 'auth/db.lua',
['auth'] = 'auth/init.lua'
}
}
-- vim: syntax=lua