-
Notifications
You must be signed in to change notification settings - Fork 14
Updated to Elixir 1.0.5, removed rebar stuff #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
thecodeboss
wants to merge
1
commit into
qhool:master
Choose a base branch
from
thecodeboss:elixir_1.0.5
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| _build/ | ||
| ebin/ | ||
| deps/ | ||
| mix.lock | ||
| /_build | ||
| /deps | ||
| erl_crash.dump | ||
| *.ez | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,12 @@ | ||
| language: erlang | ||
| otp_release: | ||
| - 17.1 | ||
| - 17.0 | ||
| env: | ||
| - BUILD_TYPE=rebar REBAR_ENV=test ELIXIR_VERSION=stable | ||
| - BUILD_TYPE=mix MIX_ENV=test ELIXIR_VERSION=stable | ||
| - BUILD_TYPE=rebar REBAR_ENV=test ELIXIR_VERSION=v0.14.3 | ||
| - BUILD_TYPE=mix MIX_ENV=test ELIXIR_VERSION=v0.14.3 | ||
|
|
||
| install: "./.travis_install" | ||
| script: "./.travis_build" | ||
| before_install: | ||
| - wget https://github.com/elixir-lang/elixir/releases/download/v1.0.5/Precompiled.zip | ||
| - unzip -d elixir Precompiled.zip | ||
| before_script: | ||
| - "export PATH=`pwd`/elixir/bin:$PATH" | ||
| - mix local.hex --force | ||
| script: "MIX_ENV=test mix do deps.get, test" | ||
| after_success: | ||
| - "mix compile && mix coveralls.travis" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # 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 third- | ||
| # party users, it should be done in your mix.exs file. | ||
|
|
||
| # Sample configuration: | ||
| # | ||
| # config :logger, :console, | ||
| # level: :info, | ||
| # format: "$date $time [$level] $metadata$message\n", | ||
| # metadata: [:user_id] | ||
|
|
||
| # 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| defmodule Quaff do | ||
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -66,4 +66,4 @@ defmodule Quaff.Debug do | |
| false -> :int.i(arg) | ||
| end | ||
| end | ||
| end | ||
| end | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| %{"aleppo": {:git, "git://github.com/ChicagoBoss/aleppo.git", "d64056219e248f24314dbbd08e3acb636e4f4b81", [branch: "master"]}, | ||
| "meck": {:hex, :meck, "0.8.3"}} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,4 +48,4 @@ defmodule Quaff.Constants.Test do | |
| assert is_integer(@_SIZEOF_CHAR) | ||
| assert is_integer(@_SIZEOF_INT) | ||
| end | ||
| end | ||
| end | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -100,4 +100,4 @@ defmodule Quaff.Debug.Test do | |
| false | ||
| end | ||
| end | ||
| end | ||
| end | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,4 +12,4 @@ defmodule Dummy2 do | |
| def x() do | ||
| 1 | ||
| end | ||
| end | ||
| end | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| ExUnit.start | ||
| ExUnit.start |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wasn't sure how hard it would be to get everything to compile under Elixir > 1.0, so I started a fresh Mix project (thus this file was auto-generated) and migrated each of the source files and whatnot manually. This file is exactly what is produced by Mix now, so I think we may as well keep it.