Skip to content

Instantly share code, notes, and snippets.

View bellatrix988's full-sized avatar

Marina bellatrix988

View GitHub Profile
@bellatrix988
bellatrix988 / .zshrc
Last active July 12, 2022 12:49
Development triks
function rubucop_current_changes() {
current_branch=$(git branch --show-current)
git diff $branch_name develop --name-status | grep '\.rb$' | xargs rubocop
}
alias zshreload="source ~/.zshrc"
@secretpray
secretpray / Install Bootstrap 5 without jQuery
Last active February 8, 2024 08:00
Install Bootstrap 5 with tooltip, popover and toasts in Ruby on Rails 6+ (without jQuery)
1) yarn add bootstrap
2) yarn add @popperjs/core
3.1) in folder 'app/javascript/' create new folder 'stylesheets':
mkdir app/javascript/stylesheets/
3.2) in new folder 'stylesheets' create file 'application.scss'
cd app/javascript/stylesheets/
touch application.scss
@bellatrix988
bellatrix988 / .railsrc
Last active June 11, 2022 14:59
Rails initialisation templates
--database=postgresql
--skip-action-cable
--skip-action-mailer
--skip-bundle
--skip-javascript
--skip-keeps
--skip-test