changed README.md
 
@@ -12,6 +12,8 @@ This has no tests yet. This is basically in-dev. Here be dragons!
12
12
13
13
Contributions appreciated :D
14
14
15
+ FYI: This was renamed from "Tex" to avoid confusion with TeX -- This project is now called Teex! The GIFs below might still mention `tex` -- just replace that in your commands with `teex`
16
+
15
17
## How To Use
16
18
17
19
### Install
changed hex_metadata.config
 
@@ -35,4 +35,4 @@
35
35
{<<"optional">>,false},
36
36
{<<"repository">>,<<"hexpm">>},
37
37
{<<"requirement">>,<<"~> 1.3.0">>}]]}.
38
- {<<"version">>,<<"0.4.0">>}.
38
+ {<<"version">>,<<"0.4.1">>}.
changed lib/mix/tasks/init.run.ex
 
@@ -22,10 +22,10 @@ defmodule Mix.Tasks.Teex.Init do
22
22
23
23
def run(_) do
24
24
home = System.user_home!()
25
- full_path = Path.join(home, ".Teex.exs")
25
+ full_path = Path.join(home, ".teex.exs")
26
26
File.write!(full_path, init_file())
27
27
28
- Messages.sparkle("Installed ~/.Teex.exs")
28
+ Messages.sparkle("Installed ~/.teex.exs")
29
29
Messages.lights("IMPORTANT! Add the following to the top of your ~/.iex.exs:")
30
30
Messages.lights("c \"#{full_path}\"")
31
31
end
changed lib/teex.ex
 
@@ -20,7 +20,7 @@ defmodule Teex do
20
20
@spec workspace(binary) :: :ok | {:error, <<_::256>>}
21
21
@doc """
22
22
Use this function to load a Teex workspace during an IEx session or during an Elixir session
23
- that your ~/.Teex.exs file has been loaded into.
23
+ that your ~/.teex.exs file has been loaded into.
24
24
25
25
This will load the code paths required to run the libraries installed inside the specified workspace.
26
26
"""
changed mix.exs
 
@@ -4,7 +4,7 @@ defmodule Teex.MixProject do
4
4
def project do
5
5
[
6
6
app: :teex,
7
- version: "0.4.0",
7
+ version: "0.4.1",
8
8
elixir: "~> 1.10",
9
9
source_url: "github.com/doawoo/teex",
10
10
start_permanent: Mix.env() == :prod,