remove emacs backup file...

This commit is contained in:
niamtokik
2019-05-08 13:35:59 +00:00
parent 0e742a6bed
commit e6b7c20829
5 changed files with 1 additions and 39 deletions

1
.gitignore vendored
View File

@@ -22,3 +22,4 @@ erl_crash.dump
# Ignore package tarball (built via "mix hex.build").
rfc5849-*.tar
*~

View File

@@ -1,18 +0,0 @@
defmodule Rfc5849 do
@moduledoc """
Documentation for Rfc5849.
"""
@doc """
Hello world.
## Examples
iex> Rfc5849.hello()
:world
"""
def hello do
:world
end
end

View File

@@ -1,2 +0,0 @@
defmodule Rfc5869.Lib do
end

View File

@@ -1,11 +0,0 @@
defmodule Rfc5849.LibTest do
test "generate signature base string" do
:ok
end
test "generate signature" do
:ok
end
end

View File

@@ -1,8 +0,0 @@
defmodule Rfc5849Test do
use ExUnit.Case
doctest Rfc5849
test "greets the world" do
assert Rfc5849.hello() == :world
end
end