Matt Beedle

Results 15 issues of Matt Beedle

I've been trying to build a recipe app called tasti.ly using ember app kit, but I've run into some issues with ember-auth. Including any of the adapters/modules seems to throw...

After installing cache_money I am unable to start my server. I see the following error: undefined method `inherit' for nil:NilClass (NoMethodError) If it helps at all, it seems to be...

Right now once an entity is saved, you have to reload it to populate the timestamps: ``` ruby user = User.new(name: 'test') UserRepository.save(user) user.created_at #=> nil UserRepository.find(user.id).created_at #=> 2013-07-13 21:17:35...

Feature

Hi, I just added this but something seems to be going wrong in the callback after I authorise the app in evernote sandbox. Any ideas? Started GET "/users/auth/evernote/callback?oauth_token=mattbeedle.13A06B664E5.687474703A2F2F67657468697265732E6465762F75736572732F617574682F657665726E6F74652F63616C6C6261636B.1AF9E1F3B624DB8F433893961563B803&oauth_verifier=58E0104ECDFDB9C91939DEDC1067DCA3" for 127.0.0.1...

The first time around all of my tests pass. The second time around I have failures related to ActiveRecord equality comparisons. This fails for example ``` ruby User.deactivated.should include(user) ```...

After following installing the plugin, and running jspec_init when I navigate to the /jspec page I see this error in the server log: No route matches "/jspec/spec/jspec_rails_spec.js" with {:method=>:get} to...

Unless I've been smoking too much crack, it seems that task categories don't get saved, and they never ever worked. ``` ruby t = CapsuleCRM::Task.new( description: 'Fix the crappy tasks...

bug

This should work: ``` ruby user.contacts.addresses.build user.contacts.phones.build user.contacts.websites.build user.contacts.emails.build ``` And perhaps even just: ``` ruby user.addresses.build user.phones.build user.websites.build user.emails.build ```

enhancement