Skip to content

Commit 864ed94

Browse files
committed
Merge remote-tracking branch 'pk-billing-lib/master'
2 parents 16737e5 + cdbf8e8 commit 864ed94

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

Diff for: pk-billing-lib/project-config/apigen/pk-billing-lib.lua

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ local EXPORTS_LIST_NAME = PROJECT_PATH
1616
.. "tmp/" .. NAME .. "/code/exports/client_api.lua"
1717

1818
common.PROJECT_PATH = PROJECT_PATH
19+
common.www.application.file_header = [[
20+
-- This file is a part of pk-billing-lib library
21+
-- Copyright (c) Alexander Gladysh <[email protected]>
22+
-- Copyright (c) Dmitry Potapov <[email protected]>
23+
-- See file `COPYRIGHT` for the license
24+
]]
1925

2026
common.www.application.url = "http://." -- no url used
2127
common.www.application.api_schema_dir = PROJECT_PATH .. "schema/client_api/"

Diff for: pk-billing-lib/project-config/list-exports/pk-billing-lib/config.lua

+8
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@
1010
--------------------------------------------------------------------------------
1111

1212
common.PROJECT_PATH = PROJECT_PATH
13+
common.file_header = [[
14+
-- This file is a part of pk-billing-lib library
15+
-- Copyright (c) Alexander Gladysh <[email protected]>
16+
-- Copyright (c) Dmitry Potapov <[email protected]>
17+
-- See file `COPYRIGHT` for the license
18+
]]
1319
common.exports =
1420
{
1521
exports_dir = PROJECT_PATH ;
@@ -22,12 +28,14 @@ common.exports =
2228
root_dir_only = "pk-billing-lib/lib/";
2329
profile_filename = "profiles.lua";
2430
out_filename = "code/exports.lua";
31+
file_header = common.file_header;
2532
};
2633
{
2734
sources_dir = PROJECT_PATH .. "generated/";
2835
root_dir_only = "pk-billing-lib/ext/";
2936
profile_filename = "profiles.lua";
3037
out_filename = "code/extensions.lua";
38+
file_header = common.file_header;
3139
};
3240
};
3341
}

0 commit comments

Comments
 (0)