Skip to content

Instantly share code, notes, and snippets.

View kylebowen's full-sized avatar

Kyle Bowen kylebowen

View GitHub Profile
@ProGM
ProGM / arel_cheatsheet_on_steroids.md
Last active October 16, 2025 04:30
Arel cheatsheet on Steroids

Arel Cheatsheet on Steroids

A (more) complete cheatsheet for Arel, including NamedFunction functions, raw SQL and window functions.

Tables

posts = Arel::Table.new(:posts)
posts = Post.arel_table # ActiveRecord

Table alias

@loilo
loilo / split-pull-requests.md
Last active June 18, 2025 12:15
Split a large pull request into two
#=Navigating=
visit('/projects')
visit(post_comments_path(post))
#=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click_on('Button Value')