├── .gitignore ├── LICENSE ├── README.md ├── helper ├── README.md ├── hotfix_helper.lua ├── hotfix_module_names.lua ├── main.lua └── test.lua ├── lua └── hotfix │ ├── hotfix.lua │ └── internal │ ├── functions_replacer.lua │ └── module_updater.lua ├── rockspecs ├── hotfix-0.1-1.rockspec └── hotfix-scm-1.rockspec └── test └── main.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/README.md -------------------------------------------------------------------------------- /helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/helper/README.md -------------------------------------------------------------------------------- /helper/hotfix_helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/helper/hotfix_helper.lua -------------------------------------------------------------------------------- /helper/hotfix_module_names.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/helper/hotfix_module_names.lua -------------------------------------------------------------------------------- /helper/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/helper/main.lua -------------------------------------------------------------------------------- /helper/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/helper/test.lua -------------------------------------------------------------------------------- /lua/hotfix/hotfix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/lua/hotfix/hotfix.lua -------------------------------------------------------------------------------- /lua/hotfix/internal/functions_replacer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/lua/hotfix/internal/functions_replacer.lua -------------------------------------------------------------------------------- /lua/hotfix/internal/module_updater.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/lua/hotfix/internal/module_updater.lua -------------------------------------------------------------------------------- /rockspecs/hotfix-0.1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/rockspecs/hotfix-0.1-1.rockspec -------------------------------------------------------------------------------- /rockspecs/hotfix-scm-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/rockspecs/hotfix-scm-1.rockspec -------------------------------------------------------------------------------- /test/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinq0123/hotfix/HEAD/test/main.lua --------------------------------------------------------------------------------