I've never really looked into Elixir. I'm a Python guy and readability is the first thing that makes me love or hate a new language. Considering I've always found Erlang fairly obtuse visually I am surprised by how easy on the eye Elixir is. I found this quote very telling: > "Elixir is simply the first language since Ruby to really care about code beauty and UX of the language, libraries and ecosystem." (found here:…
Elixir v1.3 released
21–30 of 125 posts
Re: Elixir v1.3 released
#22Is there a way to have `mix test` just call --stale steamlessly for me in my terminal?
The other updates to testing in general signal how important testing it to the Elixir core team, and should be a flag letting you know how robust this language and it's tooling is. Take a look for sure, it's a great language.
Re: Elixir v1.3 released
#23`mix test --stale` sound like a tremendous gain in productivity, can't wait to use it. Is there a way to have `mix test` just call --stale steamlessly for me in my terminal? The other updates to testing in general signal how important testing it to the Elixir core team, and should be a flag letting you know how robust this language and it's tooling is. Take a look for sure, it's a great language.
Search for aliases on this page:
Re: Elixir v1.3 released
#24`mix test --stale` sound like a tremendous gain in productivity, can't wait to use it. Is there a way to have `mix test` just call --stale steamlessly for me in my terminal? The other updates to testing in general signal how important testing it to the Elixir core team, and should be a flag letting you know how robust this language and it's tooling is. Take a look for sure, it's a great language.
You can set aliases in mix.exs... Search for aliases on this page: http://elixir-lang.org/docs/stable/mix/Mix.html
Re: Elixir v1.3 released
#25Awesome! Elixir is quickly becoming my new go to language for the web apps and more. Come for concurrency, stay for metaprogramming. :-)
Re: Elixir v1.3 released
#26If you're looking for a reason to migrate from a stack like Ruby/Rails to Elixir/Phoenix you should check out my RailsConf talk on that exact subject: https://www.youtube.com/watch?v=OxhTQdcieQE
Sometimes I find that having a detailed blog post about the subject with supporting links and documents can be a fantastic resource for transition discussions.
My team has made the decision to move toward all greenfield projects being started in Elixir/Phoenix and we couldn't be happier. We have been a Rails shop for six years prior.
Re: Elixir v1.3 released
#27Looks great. Any clue when this will be up on Homebrew?
Another nice option is kiex, Elixir version manager: https://github.com/taylor/kiex
Re: Elixir v1.3 released
#28Re: Elixir v1.3 released
#29Definitely give the Programming Phoenix book a read if you haven't already. The Elixir/Phoenix stack should be ready for most production environments now.