Skip to content

Instantly share code, notes, and snippets.

View rodriguezd's full-sized avatar

David Rodriguez rodriguezd

View GitHub Profile
@aviflombaum
aviflombaum / gist:1865381
Last active September 30, 2015 21:28
Association Examples
# Assign the Artist to the Song
artist = Artist.create()
song = Song.create()
song.artist = artist
song.save
artist.reload
artist.songs
# Build the Song from the Artist
artist = Artist.create()
@aliang
aliang / mandrill_signature_verifier.rb
Last active December 17, 2019 22:38
Mandrill webhook verifier, in Ruby
class MandrillSignatureVerifier
def initialize(key, url, params, signature)
@key = key
@url = url
@params = params
@signature = signature
end
# Return true if the signature matches
def verified?