Skip to content

Instantly share code, notes, and snippets.

View geraldoantonio's full-sized avatar

Geraldo Júnior geraldoantonio

View GitHub Profile
@geraldoantonio
geraldoantonio / template.rb
Last active July 3, 2022 20:47
Ruby on Rails Template
# rails new . --database=postgresql -M -C -T --skip-hotwire --javascript=esbuild --css=bootstrap -m 'https://gist.githubusercontent.com/geraldoantonio/6b3925c0df84ce14e7c89055a6b4b19b/raw/template.rb'
gem_group :development, :test do
gem 'factory_bot_rails'
gem 'faker'
gem 'guard-rspec', require: false
gem 'pry'
gem 'rspec-rails'
end
@geraldoantonio
geraldoantonio / settings.json
Created March 8, 2020 21:41
Settings - vscode
{
// Define o tema do VSCode
"workbench.colorTheme": "Dracula",
// Configura tamanho e família da fonte
"editor.fontSize": 18,
"editor.lineHeight": 24,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes
"editor.rulers": [
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac