mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:46:41 +00:00
73 lines
1.8 KiB
Bash
Executable File
73 lines
1.8 KiB
Bash
Executable File
#
|
|
# Ruby environment setup.
|
|
#
|
|
|
|
# ==============================================================================
|
|
# bundler
|
|
# ==============================================================================
|
|
|
|
# Enable Ruby Bundler plugin from oh-my-zsh.
|
|
zinit for @OMZ::plugins/bundler
|
|
|
|
# ==============================================================================
|
|
# rv
|
|
# ==============================================================================
|
|
|
|
if command-exists rv; then
|
|
cached-eval "$(mise-which rv)" rv shell init zsh
|
|
setup-completions rv "$(mise-which rv)" rv shell completions zsh
|
|
fi
|
|
|
|
# ==============================================================================
|
|
# aliases
|
|
# ==============================================================================
|
|
|
|
# bundler
|
|
alias bch="bundle check"
|
|
alias bcn="bundle clean"
|
|
alias bco="bundle console"
|
|
alias be="bundle exec"
|
|
alias bi="bundle_install"
|
|
alias bl="bundle list"
|
|
alias bo="bundle open"
|
|
alias bp="bundle package"
|
|
alias bu="bundle update"
|
|
|
|
# bundle exec wrappers
|
|
alias ru="bundle exec ruby"
|
|
alias ra="bundle exec rake"
|
|
alias rai="bundle exec rails"
|
|
alias rs="bundle exec rspec -f doc"
|
|
alias scu="RAILS_ENV=cucumber bundle exec spring cucumber"
|
|
|
|
# gems
|
|
alias po="powify"
|
|
alias lu="lunchy"
|
|
alias he="heroku"
|
|
alias f="foreman"
|
|
alias fs="foreman start"
|
|
alias fr="foreman run"
|
|
|
|
# ==============================================================================
|
|
# global ruby packages
|
|
# ==============================================================================
|
|
|
|
install_ruby_global_packages() {
|
|
local packages=(
|
|
dotenv
|
|
erb_lint
|
|
foreman
|
|
method_source
|
|
pry-doc
|
|
rubocop
|
|
ruby-lsp
|
|
ruby-lsp-rails
|
|
ruby-lsp-rspec
|
|
syntax_tree
|
|
syntax_tree-haml
|
|
yard
|
|
)
|
|
|
|
gem install --no-document "${packages[@]}"
|
|
}
|