diff options
author | Jordan Bracco <href@random.sh> | 2022-12-20 02:13:47 +0000 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2022-12-20 19:29:41 +0100 |
commit | 70b9bba56f5319361ce5a7df5c489b9c0d6905ce (patch) | |
tree | f9b4438965f4c5e3e1f3a6129904cbb9a37047f2 /lib/nola_plugins/txt | |
parent | Update repo URL, refs T77. (diff) |
Rename to Nola
Summary:
Nola rename cont. pt. 2. Refs T77.
`find lib -name "*.ex" -type f | xargs sed -i '' 's/LSG/Nola/g'`
Nola rename, cont. pt. 3. Refs T77.
`s/:lsg/:nola/g`
Nola rename, cont. pt. 4. Refs T77.
Nola rename, cont. pt. 5. Refs T77. Configs.
find config -type f | xargs sed -i '' 's/LSG/Nola/g'
find config -type f | xargs sed -i '' 's/lsg/nola/g'
BREAKING CHANGE: Config keys switch from `:lsg` to `:nola`
Nola rename, the end. pt 6. Refs T77.
Nola rename: The Big Move, Refs T77
Update repo URL, refs T77.
Nola rename: Nola.Plugins, refs T77
Maniphest Tasks: T77
Differential Revision: https://phab.random.sh/D3
Diffstat (limited to '')
-rw-r--r-- | lib/nola_plugins/txt.ex (renamed from lib/nola_plugins/txt_plugin.ex) | 4 | ||||
-rw-r--r-- | lib/nola_plugins/txt/markov.ex (renamed from lib/nola_plugins/txt_plugin/markov.ex) | 2 | ||||
-rw-r--r-- | lib/nola_plugins/txt/markov_native.ex (renamed from lib/nola_plugins/txt_plugin/markov_native.ex) | 4 | ||||
-rw-r--r-- | lib/nola_plugins/txt/markov_py_markovify.ex (renamed from lib/nola_plugins/txt_plugin/markov_py_markovify.ex) | 6 |
4 files changed, 8 insertions, 8 deletions
diff --git a/lib/nola_plugins/txt_plugin.ex b/lib/nola_plugins/txt.ex index cab912a..f6e71a3 100644 --- a/lib/nola_plugins/txt_plugin.ex +++ b/lib/nola_plugins/txt.ex @@ -1,4 +1,4 @@ -defmodule Nola.IRC.TxtPlugin do +defmodule Nola.Plugins.Txt do alias IRC.UserTrack require Logger @@ -55,7 +55,7 @@ defmodule Nola.IRC.TxtPlugin do def init([]) do dets_locks_filename = (Nola.data_path() <> "/" <> "txtlocks.dets") |> String.to_charlist {:ok, locks} = :dets.open_file(dets_locks_filename, []) - markov_handler = Keyword.get(Application.get_env(:nola, __MODULE__, []), :markov_handler, Nola.IRC.TxtPlugin.Markov.Native) + markov_handler = Keyword.get(Application.get_env(:nola, __MODULE__, []), :markov_handler, Nola.Plugins.Txt.Markov.Native) {:ok, markov} = markov_handler.start_link() {:ok, _} = Registry.register(IRC.PubSub, "triggers", [plugin: __MODULE__]) {:ok, %__MODULE__{locks: locks, markov_handler: markov_handler, markov: markov, triggers: load()}} diff --git a/lib/nola_plugins/txt_plugin/markov.ex b/lib/nola_plugins/txt/markov.ex index 2e30dfa..b47666c 100644 --- a/lib/nola_plugins/txt_plugin/markov.ex +++ b/lib/nola_plugins/txt/markov.ex @@ -1,4 +1,4 @@ -defmodule Nola.IRC.TxtPlugin.Markov do +defmodule Nola.Plugins.Txt.Markov do @type state :: any() @callback start_link() :: {:ok, state()} diff --git a/lib/nola_plugins/txt_plugin/markov_native.ex b/lib/nola_plugins/txt/markov_native.ex index 4c403c2..aa6b454 100644 --- a/lib/nola_plugins/txt_plugin/markov_native.ex +++ b/lib/nola_plugins/txt/markov_native.ex @@ -1,5 +1,5 @@ -defmodule Nola.IRC.TxtPlugin.MarkovNative do - @behaviour Nola.IRC.TxtPlugin.Markov +defmodule Nola.Plugins.Txt.MarkovNative do + @behaviour Nola.Plugins.Txt.Markov def start_link() do ExChain.MarkovModel.start_link() diff --git a/lib/nola_plugins/txt_plugin/markov_py_markovify.ex b/lib/nola_plugins/txt/markov_py_markovify.ex index b610ea8..f79ed47 100644 --- a/lib/nola_plugins/txt_plugin/markov_py_markovify.ex +++ b/lib/nola_plugins/txt/markov_py_markovify.ex @@ -1,4 +1,4 @@ -defmodule Nola.IRC.TxtPlugin.MarkovPyMarkovify do +defmodule Nola.Plugins.Txt.MarkovPyMarkovify do def start_link() do {:ok, nil} @@ -18,7 +18,7 @@ defmodule Nola.IRC.TxtPlugin.MarkovPyMarkovify do defp run(args \\ []) do {binary, script} = script() - args = [script, Path.expand(Nola.IRC.TxtPlugin.directory()) | args] + args = [script, Path.expand(Nola.Plugins.Txt.directory()) | args] IO.puts "Args #{inspect args}" case MuonTrap.cmd(binary, args) do {response, 0} -> response @@ -28,7 +28,7 @@ defmodule Nola.IRC.TxtPlugin.MarkovPyMarkovify do defp script() do default_script = to_string(:code.priv_dir(:nola)) <> "/irc/txt/markovify.py" - env = Application.get_env(:nola, Nola.IRC.TxtPlugin, []) + env = Application.get_env(:nola, Nola.Plugins.Txt, []) |> Keyword.get(:py_markovify, []) {Keyword.get(env, :python, "python3"), Keyword.get(env, :script, default_script)} |