Sean Stavropoulos

Results 37 comments of Sean Stavropoulos

Opened a PR [here](https://github.com/stavro/arc/issues/189) with more information - If anyone wants to help, ping me.

We do currently raise an error when an executable does not exist. https://github.com/stavro/arc/blob/master/lib/arc/transformations/convert.ex#L20-L23 Can you elaborate on the behavior you are seeing?

There is no convenience yet for deleting objects through Ecto / arc_ecto. I will consider adding this. However, to delete for now, the best option is likely to: 1. Update...

Ah - if you currently send `nil` through `cast_attachments` it will fail. Ok - for now send it through `cast` or use `change` directly: ``` elixir Ecto.Changeset.change(user, %{avatar: nil}) ```...

Can you elaborate on the issues you're having? I am currently using Arc in Phoenix 1.3, but not in a new project. Is it the directory structure changes?

Can you show me your schema / changesets? Arc should not be storing files via cast and cast_attachments in the same changeset.

I believe `file` should have the original filename. What does it have instead? Can you show a printout of what you're seeing for `file`?

The temporary file shouldn't need an extension, because when it is moved to your S3 bucket it will have an extension. Can I see where you're defining your transformation in...

This Repo isn't currently on Travis, it's using Semaphore. Will this work with Semaphore?

Interesting! Are you saving the nested models via Ecto's `cast_assoc`?