├── .busted ├── .github └── workflows │ └── test.yml ├── .gitignore ├── Makefile ├── README.md ├── lapis-exceptions-dev-1.rockspec ├── lapis ├── exceptions.lua ├── exceptions.moon ├── exceptions │ ├── email.lua │ ├── email.moon │ ├── flow.lua │ ├── flow.moon │ ├── helpers.lua │ ├── helpers.moon │ ├── migrations.lua │ ├── migrations.moon │ ├── model.lua │ ├── model.moon │ ├── models.lua │ ├── models.moon │ ├── models │ │ ├── exception_requests.lua │ │ ├── exception_requests.moon │ │ ├── exception_types.lua │ │ └── exception_types.moon │ ├── remote_addr.lua │ ├── remote_addr.moon │ ├── schema.lua │ └── schema.moon └── features │ ├── exception_tracking.lua │ └── exception_tracking.moon ├── lint_config.moon ├── spec ├── Tupfile ├── factory.moon ├── flow_spec.moon ├── lapis_exceptions_spec.moon ├── models │ ├── exception_requests_spec.moon │ └── exception_types_spec.moon └── setup_db.moon └── tags /.busted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/.busted -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lint_config.lua -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/README.md -------------------------------------------------------------------------------- /lapis-exceptions-dev-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis-exceptions-dev-1.rockspec -------------------------------------------------------------------------------- /lapis/exceptions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions.lua -------------------------------------------------------------------------------- /lapis/exceptions.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions.moon -------------------------------------------------------------------------------- /lapis/exceptions/email.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/email.lua -------------------------------------------------------------------------------- /lapis/exceptions/email.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/email.moon -------------------------------------------------------------------------------- /lapis/exceptions/flow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/flow.lua -------------------------------------------------------------------------------- /lapis/exceptions/flow.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/flow.moon -------------------------------------------------------------------------------- /lapis/exceptions/helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/helpers.lua -------------------------------------------------------------------------------- /lapis/exceptions/helpers.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/helpers.moon -------------------------------------------------------------------------------- /lapis/exceptions/migrations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/migrations.lua -------------------------------------------------------------------------------- /lapis/exceptions/migrations.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/migrations.moon -------------------------------------------------------------------------------- /lapis/exceptions/model.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/model.lua -------------------------------------------------------------------------------- /lapis/exceptions/model.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/model.moon -------------------------------------------------------------------------------- /lapis/exceptions/models.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/models.lua -------------------------------------------------------------------------------- /lapis/exceptions/models.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/models.moon -------------------------------------------------------------------------------- /lapis/exceptions/models/exception_requests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/models/exception_requests.lua -------------------------------------------------------------------------------- /lapis/exceptions/models/exception_requests.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/models/exception_requests.moon -------------------------------------------------------------------------------- /lapis/exceptions/models/exception_types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/models/exception_types.lua -------------------------------------------------------------------------------- /lapis/exceptions/models/exception_types.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/models/exception_types.moon -------------------------------------------------------------------------------- /lapis/exceptions/remote_addr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/remote_addr.lua -------------------------------------------------------------------------------- /lapis/exceptions/remote_addr.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/remote_addr.moon -------------------------------------------------------------------------------- /lapis/exceptions/schema.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/schema.lua -------------------------------------------------------------------------------- /lapis/exceptions/schema.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/exceptions/schema.moon -------------------------------------------------------------------------------- /lapis/features/exception_tracking.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/features/exception_tracking.lua -------------------------------------------------------------------------------- /lapis/features/exception_tracking.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lapis/features/exception_tracking.moon -------------------------------------------------------------------------------- /lint_config.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/lint_config.moon -------------------------------------------------------------------------------- /spec/Tupfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/spec/Tupfile -------------------------------------------------------------------------------- /spec/factory.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/spec/factory.moon -------------------------------------------------------------------------------- /spec/flow_spec.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/spec/flow_spec.moon -------------------------------------------------------------------------------- /spec/lapis_exceptions_spec.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/spec/lapis_exceptions_spec.moon -------------------------------------------------------------------------------- /spec/models/exception_requests_spec.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/spec/models/exception_requests_spec.moon -------------------------------------------------------------------------------- /spec/models/exception_types_spec.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/spec/models/exception_types_spec.moon -------------------------------------------------------------------------------- /spec/setup_db.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/spec/setup_db.moon -------------------------------------------------------------------------------- /tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/lapis-exceptions/HEAD/tags --------------------------------------------------------------------------------