Andrey Akulov

Results 8 issues of Andrey Akulov

I have devise based users table with couple inet fields. ``` create_table "users", force: :cascade do |t| ... t.datetime "last_sign_in_at" t.inet "current_sign_in_ip" t.inet "last_sign_in_ip" t.string "confirmation_token" ... end ``` Then...

I'm following [this](https://github.com/toy/dump#capistrano-integration) for rails 3 section in order to include cap tasks. Then I run `bin/cap staging dump:remote:create`, I recieve message: ``` (Backtrace restricted to imported tasks) cap aborted!...

Just as suggestion or maybe I missing something and this can be already achieved: ```elixir defmodule SomeIdentityParams do use Params.Schema import App.Params.Helpers @fields ~w(id code) schema do field :id, :id...

enhancement
help wanted

Look at this beautiful project - https://github.com/arnaud-lb/MtHaml. It creates compiled php templates from haml files. Any feedback are welcome!

``` elixir defmodule Test do use ExUnit.Case require Logger test "color" do Logger.warn "warn" Logger.error "error" end end ``` ![selection_004](https://cloud.githubusercontent.com/assets/1290275/19043174/1996a0fc-89a0-11e6-897f-64951c7c2490.png) ![selection_005](https://cloud.githubusercontent.com/assets/1290275/19043175/1ccc4bbe-89a0-11e6-9ccf-71cb923730fe.png)

Kind: Enhancement

Removes &to_string/1 in &number_to_delimited/1 because it's a reason for a failure of custom types what implement `Number.Conversion` conversion protocol but do not implement `String.Chars` (or implements it not the format...

The current version of go-cron does not work and produce the following errors: ``` $ docker run itbm/postgresql-backup-s3 go-cron "@daily" /bin/bash -c "echo 1" Unable to find image 'itbm/postgresql-backup-s3:latest' locally...