====== Установка / Удаление модулей luarocks ======

===== Установка модулей =====

==== Пакетный менеджер (luarocks) ====

=== Debian ===

<code bash>
$ apt install luarocks
$ luarocks install luasec
</code>

=== MacOS ===

<code bash>$ brew install lua</code>

  * https://luarocks.org/ (https://github.com/luarocks/luarocks)

==== Установки из папки ====

<code bash>
$ git clone https://github.com/Olivine-Labs/busted.git
$ luarocks install busted/busted-1.3-1.rockspec
</code>

or

<code bash>
$ git clone https://github.com/Olivine-Labs/busted.git
$ cd busted
$ luarocks make
</code>

==== Удаление ====

<code bash>
$ luarocks remove  rockspecs/luasocket-async-scm-0.rockspec
</code>

===== Конструкции =====

  * [[https://gist.github.com/picsoung/8e04fac92f883b3c9d77|switch]]
