Skip to content

Instantly share code, notes, and snippets.

View stevula's full-sized avatar
:octocat:
Coding

Steven Broderick stevula

:octocat:
Coding
  • New Relic
  • San Francisco, CA
View GitHub Profile
@stevula
stevula / deep-links.md
Last active September 18, 2018 00:37
Deep link test

Keybase proof

I hereby claim:

  • I am stevula on github.
  • I am stevensynapsepay (https://keybase.io/stevensynapsepay) on keybase.
  • I have a public key whose fingerprint is 7F2E 11DF 7BE5 5338 B03C 0C37 A479 CE8F 598B FAB8

To claim this, I am signing this object:

class Game < ActiveRecord::Base
has_and_belongs_to_many :decks
has_many :cards, through: :decks
end
class Deck < ActiveRecord::Base
has_and_belongs_to_many :games
has_many :cards
end