Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions impl/elixir/lib/mix/tasks/vsh.daemon.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>

defmodule Mix.Tasks.Vsh.Daemon do
@moduledoc """
Expand Down
1 change: 1 addition & 0 deletions impl/elixir/lib/vsh.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>

defmodule VSH do
@moduledoc """
Expand Down
1 change: 1 addition & 0 deletions impl/elixir/lib/vsh/application.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>

defmodule VSH.Application do
@moduledoc """
Expand Down
1 change: 1 addition & 0 deletions impl/elixir/lib/vsh/daemon.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>

defmodule VSH.Daemon do
@moduledoc """
Expand Down
2 changes: 2 additions & 0 deletions impl/elixir/lib/vsh/filesystem.ex
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
defmodule VSH.Filesystem do
@moduledoc """
Valence Shell - Elixir Filesystem Operations
Expand Down
1 change: 1 addition & 0 deletions impl/elixir/lib/vsh/nif.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>

defmodule VSH.NIF do
@moduledoc """
Expand Down
1 change: 1 addition & 0 deletions impl/elixir/lib/vsh/secure_erase.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
defmodule VSH.SecureErase do
@moduledoc """
Hardware-based secure erase for SSDs using NIST SP 800-88 Purge methods.
Expand Down
1 change: 1 addition & 0 deletions impl/elixir/lib/vsh/state.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>

defmodule VSH.State do
@moduledoc """
Expand Down
1 change: 1 addition & 0 deletions impl/elixir/mix.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>

defmodule VSH.MixProject do
use Mix.Project
Expand Down
1 change: 1 addition & 0 deletions impl/elixir/test/test_helper.exs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>

ExUnit.start()
1 change: 1 addition & 0 deletions impl/elixir/test/vsh_test.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>

defmodule VSHTest do
@moduledoc """
Expand Down
Loading