Daniel Morgan

Results 15 issues of Daniel Morgan

Using this library with SPM will not bring in the resources (those lovely little json files) I've added an alternative initializer where you can specify a path. e.g ```swift let...

Just want to track this issue, I haven't thought about a solution yet. The issue is a follows: - We are switching from Uberauth. - A user has been created...

### Environment * Elixir version (elixir -v): 1.8.1 * Arc version (mix deps): {:arc, "~> 0.11.0"}, * Arc dependencies when applicable (mix deps): {:arc_ecto, "~> 0.11.1"}, * Operating system: osx...

The docs state this should return the date in the region specified in the ISO string. This is not the case unless I'm missing something. It converts to GMT. ```...

I may be missing something but it seems strange that ``` def allowed?(request) t1 = request_start_time(request) t0 = cache_get(key = cache_key(request)) rescue nil allowed = !t0 || (dt = t1...

chore

I'm trying to have a few different encoders for a particular module. I was hoping to pass a keyword argument in the opts argument when I call Jason.encode/2 However the...

Thanks for the great library, I've got a point of confusion I'd like help understanding. > The primary philosophy is that messages generated by invalid and/or unexpected user input are...

class Product < ActiveRecord::Base acts_as_citier validates :name, :uniqueness => true class Dictionary < Book acts_as_citier > Product.create!(:name -> 'a book') > Dictionary.create!(:name => 'a book') ActiveRecord::StatementInvalid: Mysql2::Error: Unknown column 'view_dictionaries.name'...

If you have an attr_accesible on the root class which doesn't include child classes attributes then they won't update when mass assigning.

When you create a view it doesn't create any migration code in the schema. If you rolback/reset you need to delete your schema. Using the rails_sql_view gem fixes this as...