Skip to content

Instantly share code, notes, and snippets.

View kylemacey's full-sized avatar
💻
Writing bunches of code and stuff

Kyle Macey kylemacey

💻
Writing bunches of code and stuff
View GitHub Profile
@kylemacey
kylemacey / app-models-foo.rb
Created April 21, 2020 20:03
Generate RBI for a Mongoid Document
# typed: true
class Foo
include Mongoid::Document
include Mongoid::Timestamps
field :bar, type: String
end