Skip to content

Instantly share code, notes, and snippets.

View byellokore's full-sized avatar
🏠
Working from home

Gabriel Fontoura Dos Santos byellokore

🏠
Working from home
View GitHub Profile
@serradura
serradura / nano_case.rb
Last active March 30, 2023 12:36
NanoCase: Abstraction inspired by the u-case gem (compatible with old and new Rubies)
class NanoCase
class Result
UNDEFINED = :undefined
attr_reader :type, :data
def initialize(type, data)
@type = type
@data = data
end
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 7, 2024 21:31
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example