This repository has been archived by the owner on Dec 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
authman-scm-1.rockspec
42 lines (40 loc) · 2 KB
/
authman-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
35
36
37
38
39
40
41
42
package = 'authman'
version = 'scm-1'
source = {
url = 'git://github.com/mailru/tarantool-authman.git',
branch = 'master',
}
description = {
summary = 'Auth module for Tarantool',
homepage = 'https://github.com/mailru/tarantool-authman.git',
license = 'MIT',
}
dependencies = {
'lua >= 5.1',
}
build = {
type = 'builtin',
modules = {
['authman.migrations.migrations'] = 'authman/migrations/migrations.lua',
['authman.model.password'] = 'authman/model/password.lua',
['authman.model.password_token'] = 'authman/model/password_token.lua',
['authman.model.session'] = 'authman/model/session.lua',
['authman.model.social'] = 'authman/model/social.lua',
['authman.model.user'] = 'authman/model/user.lua',
['authman.model.oauth.app'] = 'authman/model/oauth/app.lua',
['authman.model.oauth.code'] = 'authman/model/oauth/code.lua',
['authman.model.oauth.token'] = 'authman/model/oauth/token.lua',
['authman.model.oauth.consumer'] = 'authman/model/oauth/consumer.lua',
['authman.model.oauth.consumer.redirect'] = 'authman/model/oauth/consumer/redirect.lua',
['authman.model.oauth.consumer.scope'] = 'authman/model/oauth/consumer/scope.lua',
['authman.utils.http'] = 'authman/utils/http.lua',
['authman.utils.utils'] = 'authman/utils/utils.lua',
['authman.validator'] = 'authman/validator.lua',
['authman.response'] = 'authman/response.lua',
['authman.error'] = 'authman/error.lua',
['authman.db'] = 'authman/db.lua',
['authman.oauth.oauth'] = 'authman/oauth/oauth.lua',
['authman'] = 'authman/init.lua'
}
}
-- vim: syntax=lua