Skip to content
This repository has been archived by the owner on Jun 11, 2023. It is now read-only.

Commit

Permalink
Merge bc1869d into 9e04b8d
Browse files Browse the repository at this point in the history
  • Loading branch information
renatomassaro authored Oct 8, 2017
2 parents 9e04b8d + bc1869d commit 95aeab4
Show file tree
Hide file tree
Showing 29 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion lib/account/model/account.ex
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Helix.Account.Model.Account do
use HELL.ID, field: :account_id, meta: [0x0001]

import Ecto.Changeset
import HELL.MacroHelpers
import HELL.Macros

alias Comeonin.Bcrypt
alias Ecto.Changeset
Expand Down
2 changes: 1 addition & 1 deletion lib/cache/action/cache.ex
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ defmodule Helix.Cache.Action.Cache do
Follow these rules and no one will get hurt.
"""

import HELL.MacroHelpers
import HELL.Macros

alias HELL.IPv4
alias Helix.Hardware.Model.Component
Expand Down
2 changes: 1 addition & 1 deletion lib/cache/internal/cache.ex
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule Helix.Cache.Internal.Cache do
responsible for coordinating all other Internal modules.
"""

import HELL.MacroHelpers
import HELL.Macros

alias Helix.Cache.Model.Cacheable
alias Helix.Cache.Model.ComponentCache
Expand Down
2 changes: 1 addition & 1 deletion lib/cache/internal/populate.ex
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defmodule Helix.Cache.Internal.Populate do
own logic for populating the cache database.
"""

import HELL.MacroHelpers
import HELL.Macros

alias Helix.Cache.Repo
alias Helix.Cache.Model.Cacheable
Expand Down
2 changes: 1 addition & 1 deletion lib/cache/query/cache.ex
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule Helix.Cache.Query.Cache do
invalid data etc)
"""

import HELL.MacroHelpers
import HELL.Macros

alias HELL.IPv4
alias Helix.Entity.Model.Entity
Expand Down
2 changes: 1 addition & 1 deletion lib/entity/action/database.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Helix.Entity.Action.Database do
API used to modify the Hacked Database.
"""

import HELL.MacroHelpers
import HELL.Macros

alias HELL.IPv4
alias Helix.Entity.Query.Entity, as: EntityQuery
Expand Down
2 changes: 1 addition & 1 deletion lib/event/loggable/flow.ex
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ defmodule Helix.Event.Loggable.Flow do
For an implementation example, see `lib/software/event/file.ex`.
"""

import HELL.MacroHelpers
import HELL.Macros

alias HELL.IPv4
alias Helix.Event
Expand Down
2 changes: 1 addition & 1 deletion lib/event/notification_handler.ex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
defmodule Helix.Event.NotificationHandler do

import HELL.MacroHelpers
import HELL.Macros

alias HELL.Utils
alias Helix.Event.Notificable
Expand Down
2 changes: 1 addition & 1 deletion lib/hell/hell/macro_helpers.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defmodule HELL.MacroHelpers do
defmodule HELL.Macros do
@moduledoc """
Useful macros spread throughout Helix codebase.
"""
Expand Down
2 changes: 1 addition & 1 deletion lib/network/action/tunnel.ex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
defmodule Helix.Network.Action.Tunnel do

import HELL.MacroHelpers
import HELL.Macros

alias Helix.Server.Henforcer.Server, as: ServerHenforcer
alias Helix.Server.Model.Server
Expand Down
2 changes: 1 addition & 1 deletion lib/network/public/network.ex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
defmodule Helix.Network.Public.Network do

import HELL.MacroHelpers
import HELL.Macros

alias HELL.IPv4
alias Helix.Cache.Query.Cache, as: CacheQuery
Expand Down
2 changes: 1 addition & 1 deletion lib/process/action/process.ex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
defmodule Helix.Process.Action.Process do

import HELL.MacroHelpers
import HELL.Macros

alias HELL.IPv4
alias Helix.Entity.Model.Entity
Expand Down
2 changes: 1 addition & 1 deletion lib/process/model/process/naive_struct.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Helix.Process.Model.Process.NaiveStruct do
@moduledoc false

import HELL.MacroHelpers
import HELL.Macros

docp """
This module is a converter that transforms any struct into a non-struct map
Expand Down
2 changes: 1 addition & 1 deletion lib/process/public/view/helper.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Helix.Process.Public.View.Process.Helper do
Helper functions for `ProcessView` and `ProcessViewable`.
"""

import HELL.MacroHelpers
import HELL.Macros

alias HELL.ClientUtils
alias Helix.Cache.Query.Cache, as: CacheQuery
Expand Down
2 changes: 1 addition & 1 deletion lib/server/public/index.ex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
defmodule Helix.Server.Public.Index do

import HELL.MacroHelpers
import HELL.Macros

alias Helix.Cache.Query.Cache, as: CacheQuery
alias Helix.Entity.Model.Entity
Expand Down
2 changes: 1 addition & 1 deletion lib/server/state/websocket/server.ex
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ defmodule Helix.Server.State.Websocket.Channel do

use GenServer

import HELL.MacroHelpers
import HELL.Macros

alias HELL.IPv4
alias Helix.Entity.Model.Entity
Expand Down
2 changes: 1 addition & 1 deletion lib/server/websocket/channel/server/join.ex
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ defmodule Helix.Server.Websocket.Channel.Server.Join do

defimpl Helix.Websocket.Joinable do

import HELL.MacroHelpers
import HELL.Macros

alias HELL.IPv4
alias Helix.Cache.Query.Cache, as: CacheQuery
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule Helix.Server.Websocket.Channel.Server.Requests.FileDownload do

defimpl Helix.Websocket.Requestable do

import HELL.MacroHelpers
import HELL.Macros

alias Helix.Websocket.Utils, as: WebsocketUtils
alias Helix.Cache.Query.Cache, as: CacheQuery
Expand Down
2 changes: 1 addition & 1 deletion lib/software/action/flow/file/transfer.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Helix.Software.Action.Flow.File.Transfer do

import HELF.Flow
import HELL.MacroHelpers
import HELL.Macros

alias Helix.Event
alias Helix.Network.Action.Tunnel, as: TunnelAction
Expand Down
2 changes: 1 addition & 1 deletion lib/software/event/handler/cracker.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Helix.Software.Event.Handler.Cracker do

import HELF.Flow
import HELL.MacroHelpers
import HELL.Macros

alias Helix.Event
alias Helix.Entity.Query.Entity, as: EntityQuery
Expand Down
2 changes: 1 addition & 1 deletion lib/software/model/file.ex
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Helix.Software.Model.File do
use HELL.ID, field: :file_id, meta: [0x0020]

import Ecto.Changeset
import HELL.MacroHelpers
import HELL.Macros

alias Ecto.Changeset
alias HELL.Constant
Expand Down
2 changes: 1 addition & 1 deletion lib/story/event/handler/story.ex
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defmodule Helix.Story.Event.Handler.Story do
"""

import HELF.Flow
import HELL.MacroHelpers
import HELL.Macros

alias Helix.Event
alias Helix.Story.Action.Story, as: StoryAction
Expand Down
2 changes: 1 addition & 1 deletion lib/story/internal/email.ex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
defmodule Helix.Story.Internal.Email do

import HELL.MacroHelpers
import HELL.Macros

alias Helix.Entity.Model.Entity
alias Helix.Story.Model.Step
Expand Down
2 changes: 1 addition & 1 deletion lib/story/model/step.ex
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule Helix.Story.Model.Step do
`lib/story/model/steppable.ex`
"""

import HELL.MacroHelpers
import HELL.Macros

alias HELL.Constant
alias Helix.Event
Expand Down
2 changes: 1 addition & 1 deletion lib/story/model/step/macros.ex
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule Helix.Story.Model.Step.Macros do
documentation instead.
"""

import HELL.MacroHelpers
import HELL.Macros

alias HELL.Constant
alias HELL.Utils
Expand Down
2 changes: 1 addition & 1 deletion test/server/state/websocket/server_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Helix.Server.State.Websocket.ChannelTest do

use ExUnit.Case, async: true

import HELL.MacroHelpers
import HELL.Macros

alias Helix.Entity.Model.Entity
alias Helix.Network.Model.Network
Expand Down
2 changes: 1 addition & 1 deletion test/story/model/story_email_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Helix.Story.Model.StoryEmailTest do
use ExUnit.Case, async: true

import Ecto.Changeset
import HELL.MacroHelpers
import HELL.Macros

alias Helix.Entity.Model.Entity
alias Helix.Story.Model.StoryEmail
Expand Down
2 changes: 1 addition & 1 deletion test/support/event/setup/software.ex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
defmodule Helix.Test.Event.Setup.Software do

import HELL.MacroHelpers
import HELL.Macros

alias Helix.Entity.Model.Entity
alias Helix.Network.Model.Connection
Expand Down
2 changes: 1 addition & 1 deletion test/support/hell/random.ex
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule HELL.TestHelper.Random do
alias HELL.TestHelper.Random.Alphabet.Alphanum
alias HELL.TestHelper.Random.Alphabet.Digits

import HELL.MacroHelpers
import HELL.Macros

@type string_params :: [
{:min, integer},
Expand Down

0 comments on commit 95aeab4

Please sign in to comment.