multiple pages (boot to bup): add korean translation (#3587)

This commit is contained in:
lch7167
2019-11-20 02:21:58 +09:00
committed by Starbeamrainbowlabs
parent 8181c0c27e
commit 0f1332a5d5
8 changed files with 224 additions and 0 deletions

20
pages.ko/common/bundle.md Normal file
View File

@@ -0,0 +1,20 @@
# bundle
> Ruby 프로그래밍 언어의 종속성 관리자.
> 더 많은 정보: <https://bundler.io/man/bundle.1.html>.
- 작업 디렉토리에 있는 `Gemfile`에 정의된 모든 gem을 설치:
`bundle install`
- `Gemfile` 에 정의된 규칙에 따라 모든 gem을 업데이트 하고 `Gemfile.lock`을 재생성:
`bundle update`
- `Gemfile`에 정의된 특정 gem을 업데이트:
`bundle update --source {{gem명}}`
- 새로운 gem의 스켈레톤 생성:
`bundle gem {{gem명}}`