An open API service indexing awesome lists of open source software.

https://github.com/coryodaniel/prag_prog

Learning elixir going through the Pragmatic Programming Programming Elixir Book
https://github.com/coryodaniel/prag_prog

Last synced: about 2 months ago
JSON representation

Learning elixir going through the Pragmatic Programming Programming Elixir Book

Awesome Lists containing this project

README

          

## Goal
Just learnin' Elixir going through [Programming Elixir](https://pragprog.com/book/elixir/programming-elixir) by Dave Thomas.

Trying to do the whole book w/ TDD via ExUnit to pick up ExUnit and functional testing skills while I go.

## At chapter 8 switched to 1.2-rc1

[Elixir 1.2 rc1 changelog](https://github.com/elixir-lang/elixir/blob/ef5ba3af059f76489631dc26b52ecaeff09af3fe/CHANGELOG.md#erlang-18-support)

Dict, HashDict dep -> Map
Set, HashSet dep -> MapSet

## Rerun tests on change
mix test.watch

## Running IEx.pry w/ mix tests

iex -S mix test

Considering -> https://github.com/josephwilk/amrita