pokonski
pokonski
I had the same issue but turned out that after removing apktool installed from `apt` it left a broken symlink in ~/.local/share/apktool/framework/1.apk`, removing that symlink fixed it for me.
I've been working on a complete CanCan replacement since this one is long dead => https://github.com/pokonski/access-granted I successfully use it in production where I replaced CanCan completely in just one...
@bryanrite Sure, can't force anyone to use it :) CanCan served me well for years, but I just really needed something up-to-date and fixed so I decided to take the...
@willkoehler yeah that is the biggest part of CanCan I do not want to have right now, because it's really complex compared to the rest of the code. Maybe as...
@gamov just as an update. I realized thanks to comments in this thread that people still want features like AR integration. So I'm working on scopes and accessible_by? for my...
@codyolsen this is what I'm working right now @ https://github.com/pokonski/access-granted-rails I want to have a working version of accessible_by? and scopes for AR and Mongoid/Mongo_Mapper in the next two weeks.
Maybe it's because the controller action is executed BEFORE the subscribe_to in the view. Therefore you are pushing notification before actually subscribing the user to a channel.
My private messaging is divided into "threads", every other friend I have is a different thread. So I do something like: ``` ruby PrivatePub.publish_to "/messages/thread/#{[current_user.id,recipient.id].sort.join('-')}", :message => "something" ``` this...
Does that help you?
Did you configure the private API keys for Github? https://github.com/pokonski/activity_blog/blob/master/config/initializers/devise.rb#L218 this expects a config/github.yml file with security credentials.