Jonas Innala
Jonas Innala
This HAML line: %html.no-js{lang: :en} Converts to this SLIM line: html.no-js lang: :en
I want to have a generic layout for all my pages. How I currently do it is I have a generic struct with title/body values and inject them in the...
How do I add filters to the attributes? Like the facebook api: https://developers.facebook.com/tools/explorer So u could select: https://www.example.com/api/users/42?fields=id,username Would return: { "id": 42, "username": "Lephyrius" }
Is there a way to add unique jobs so you cannot requeue another of the the same job like in: https://github.com/mhenrixon/sidekiq-unique-jobs ?
How do I add `DISTINCT ON (columns)` to SELECT clause? I want to make this query: `SELECT DISTINCT ON (testdummies.id) testdummies.id, testdummies.integer_array, testdummies.name FROM testdummies LEFT JOIN testdummies t0 ON...
I get this error when I try to login with sorcery when using this gem: Completed 500 Internal Server Error in 30ms ArgumentError (wrong number of arguments (2 for 1)):...
Can u update so it works with paperclip 3.2.0?
I tried in the mailman.rb : require './app/models/user.rb' For accessing the user models in my rails app. But it doesn't work. Am I doing something wrong or should I duplicate...