Ruby on Rails에 대한 자동 설치 시스템 종속성

Homebrew를 Ruby on Rails 프로젝트 로컬 설정에 통합해 보겠습니다.

필요한 종속성을 설정 및 설치/업데이트하는 데 사용할 Ruby on Rails 프로젝트에 대한 규칙bin/setup이 있습니다. 그러나 기본적으로 시스템 종속성은 포함되지 않습니다.

이를 위해 the Homebrew Bundle tool을 사용할 것입니다.

먼저 다음과 같은 Brewfile가 필요합니다.

# Redis - For ActionCable support (and Sidekiq, caching, etc.)
brew "redis"

# PostgreSQL - brew install postgresql
brew "postgresql"

# Overmind (requires tmux)
brew "tmux"
brew "overmind"

# Imagemagick or libvips - for processing images (avatars, file uploads, etc.)
brew "vips"

# Yarn - for installing Javascript dependencies
brew "yarn"


그런 다음 bin/setup,에서 다음을 추가합니다.

puts "== Installing system dependencies =="
if system('[[ (-x "$(command -v brew)") ]]') # Is Homebrew available?
  system("brew bundle check --no-lock --no-upgrade") || system!("brew bundle --no-upgrade --no-lock") # install if there are missed dependencies
end


다른 종속성을 설치하기 전에 처음에 추가하는 것을 선호합니다.

이는 새로운 온보딩이 하나의 명령만으로 개발을 설정하는 데 도움이 됩니다. README에서 명령 수를 줄입니다.


Paul Keen은 오픈 소스 기여자이자 JetThoughts의 CTO입니다. 그를 팔로우하거나 GitHub .

If you enjoyed this story, we recommend reading our latest tech stories and trending tech stories.

좋은 웹페이지 즐겨찾기