19 May Third party SAML Single Sign On (SSO) integration / implementation in Ruby
If you ever have the need to play with SAML SSO or SAML Single Sign-On integrations in Ruby, feel free to take a look at this gist :) ...
If you ever have the need to play with SAML SSO or SAML Single Sign-On integrations in Ruby, feel free to take a look at this gist :) ...
Let's say you want to see where it is declared the method `last` from ActiveRecord, you can do so Just as simple as: [ruby] MyModel.method(:last).source_location [/ruby] There you go...
Ahora una triste historia para programadores/arquitectos de software: Erase una vez una clase llamada `God` la cual implementaba el método `create_planet` [ruby] Class God def self.create_planet Earth.new end end [/ruby] Cierto día fue invocada por primera vez [ruby] @earth = God.create_planet [/ruby] La instancia Earth(Tierra) era maravillosa y resplandeciente, llena...
I was having troubles after switching between branches, here is the basic troubleshooting trick. [caption id="attachment_1394" align="alignnone" width="700"] problems with gem depedencies[/caption] As simple as that, thanks for reading Keep reading, coding and relax, peace H....
How do I allow my camera in a Cucumber scenario in Chrome? I was looking for a way to test a WebRtc feature and trying to fake the camera in order to do so, it turns out that it was pretty easy when using Chrome as...