Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
slogsdon committed Oct 4, 2015
1 parent 25c5c8c commit e0ead03
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 47 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/deps
erl_crash.dump
*.ez
doc/
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,3 @@ before_script:
after_success:
- MIX_ENV=test mix coveralls.travis
- MIX_ENV=test mix dogma
after_script:
- MIX_ENV=docs mix deps.get
- MIX_ENV=docs mix inch.report
33 changes: 4 additions & 29 deletions config/config.exs
Original file line number Diff line number Diff line change
@@ -1,30 +1,5 @@
# This file is responsible for configuring your application
# and its dependencies with the aid of the Mix.Config module.
use Mix.Config

# This configuration is loaded before any dependency and is restricted
# to this project. If another project depends on this project, this
# file won't be loaded nor affect the parent project. For this reason,
# if you want to provide default values for your application for
# 3rd-party users, it should be done in your "mix.exs" file.

# You can configure for your application as:
#
# config :control, key: :value
#
# And access this configuration in your application as:
#
# Application.get_env(:control, :key)
#
# Or configure a 3rd-party app:
#
# config :logger, level: :info
#

# It is also possible to import configuration files, relative to this
# directory. For example, you can emulate configuration per environment
# by uncommenting the line below and defining dev.exs, test.exs and such.
# Configuration from the imported file will override the ones defined
# here (which is why it is important to import them last).
#
# import_config "#{Mix.env}.exs"
config :dogma,
exclude: [
~r(test/),
]
11 changes: 6 additions & 5 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Control.Mixfile do
def project do
[app: :control,
version: "0.0.1",
elixir: "~> 1.1",
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
test_coverage: [tool: ExCoveralls],
Expand All @@ -19,11 +19,12 @@ defmodule Control.Mixfile do

defp deps do
[
{ :earmark, "~> 0.1.17", only: :docs },
{ :ex_doc, "~> 0.7.3", only: :docs },
{:earmark, "~> 0.1.17", only: :docs},
{:ex_doc, "~> 0.7.3", only: :docs},

{ :excoveralls, "~> 0.3.11", only: :test },
{ :dialyze, "~> 0.2.0", only: :test }
{:excoveralls, "~> 0.3.11", only: :test},
{:dialyze, "~> 0.2.0", only: :test},
{:dogma, "~> 0.0", only: :test},
]
end

Expand Down
2 changes: 2 additions & 0 deletions mix.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
%{"dialyze": {:hex, :dialyze, "0.2.0"},
"dogma": {:hex, :dogma, "0.0.9"},
"earmark": {:hex, :earmark, "0.1.17"},
"ex_doc": {:hex, :ex_doc, "0.7.3"},
"excoveralls": {:hex, :excoveralls, "0.3.11"},
"exjsx": {:hex, :exjsx, "3.2.0"},
"hackney": {:hex, :hackney, "1.3.2"},
"idna": {:hex, :idna, "1.0.2"},
"jsx": {:hex, :jsx, "2.6.2"},
"poison": {:hex, :poison, "1.5.0"},
"ssl_verify_hostname": {:hex, :ssl_verify_hostname, "1.0.5"}}
9 changes: 0 additions & 9 deletions test.exs

This file was deleted.

1 change: 0 additions & 1 deletion test/control/helpers_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ defmodule Control.HelpersTest do
alias Data.Maybe
import Maybe
import Control.Helpers
import Control.Monad

test "~>>" do
assert nothing ~>> fn _ -> nothing end
Expand Down

0 comments on commit e0ead03

Please sign in to comment.