Skip to content

Commit bfb9042

Browse files
author
Sangyong Sim
committed
Translate snap article (ko)
1 parent d85565f commit bfb9042

File tree

2 files changed

+31
-33
lines changed

2 files changed

+31
-33
lines changed

ko/documentation/installation/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,17 +95,17 @@ $ sudo yum install ruby
9595
설치된 버전은 보통 그 특정 배포 버전 릴리스 시기의 최신 버전의 루비입니다.
9696

9797

98-
### snap (Ubuntu or other linux distribution)
98+
### snap (Ubuntu나 다른 리눅스 배포판)
9999
{: #snap}
100100

101-
Snap is a package manager developed by Canonical. It's available out-of-the-box on Ubuntu, but snap also works on many Linux distributions.
102-
You can use it like this.
101+
Snap은 Canonical에 의해 개발된 패키지 매니저입니다. 이는 Ubuntu에서 바로 사용가능합니다만, 다른 리눅스 배포판에서도 동작합니다.
102+
다음과 같이 사용할 수 있습니다.
103103

104104
{% highlight sh %}
105105
$ sudo snap install ruby --classic
106106
{% endhighlight %}
107107

108-
We have several channels per Ruby minor series. For instance, the following commands switch to Ruby 2.3:
108+
루비의 마이너 시리즈를 위한 채널을 제공합니다. 예를 들어, 다음 명령은 루비 2.3으로 변경할 수 있게 해줍니다.
109109

110110
{% highlight sh %}
111111
$ sudo snap switch ruby --channel=2.3/stable

ko/news/_posts/2018-11-08-snap.md

Lines changed: 27 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,61 @@
11
---
22
layout: news_post
3-
title: The official Ruby snap is available
3+
title: 공식 루비 snap이 사용 가능합니다.
44
author: Hiroshi SHIBATA
5-
translator:
5+
translator: "shia"
66
date: 2018-11-08 14:58:28 +0000
7-
lang: en
7+
lang: ko
88
---
99

10-
We released the official snap package of the Ruby language.
10+
루비의 공식 snap 패키지를 릴리스 했습니다.
1111

1212
<https://snapcraft.io/ruby>
1313

14-
Snap is a package system developed by Canonical. It allows you to distribute
15-
a software with its dependencies for many different Linux systems.
16-
This solves the problem that a user cannot install the latest Ruby release
17-
from the default repository of their system like in `rpm` or `apt`.
14+
Snap 은 Canonical이 개발한 패키지 시스템입니다. 이를 통해 여러 다른 리눅스
15+
시스템을 위한 의존성과 함께 소프트웨어를 배포할 수 있습니다.
16+
이는 `rpm`이나 `apt`와 같은 각자의 기본 저장소에서 최신 루비 릴리스를 설치할
17+
수 없는 문제를 해결합니다.
1818

19-
On Ubuntu 16.04 or later, you can install the Ruby snap with the
20-
following command:
19+
Ubuntu 16.04나 그 이후의 버전을 사용하고 있다면 다음 명령을 통해서 루비 snap을
20+
설치할 수 있습니다.
2121

2222
```
2323
sudo snap install ruby --classic
2424
```
2525

26-
(If you use other Linux distributions, please refer to
27-
<https://docs.snapcraft.io/installing-snapd/6735>.)
26+
(만약 다른 리눅스 배포판을 이용하고 있다면,
27+
<https://docs.snapcraft.io/installing-snapd/6735>를 참고하세요.)
2828

29-
Our snap uses the "channel" feature to release multiple Ruby series
30-
concurrently. For example, without specifying a channel, currently
31-
Ruby 2.5.3 will be installed. But if you want to use Ruby 2.4,
32-
specify the 2.4 channel as follows:
29+
이 snap은 여러 루비 시리즈를 동시에 릴리스하기 위해서 '채널' 기능을 사용합니다.
30+
예를 들어, 채널을 지정하지 않는다면 루비 2.5.3이 설치될 것입니다. 그러나
31+
루비 2.4를 사용하고 있다면 다음과 같이 2.4 채널을 지정해주세요.
3332

3433
```
3534
sudo snap install ruby --classic --channel=2.4/stable
3635
```
3736

38-
You can also use multiple channels. The following commands switch to Ruby 2.3:
37+
여러 채널을 동시에 사용할 수도 있습니다. 다음 명령을 통해 루비 2.3으로 전환할 수 있습니다.
3938

4039
```
4140
sudo snap switch ruby --channel=2.3/stable
4241
sudo snap refresh
4342
```
4443

45-
Our snap sets the `GEM_HOME` and `GEM_PATH` environment variables
46-
to `$HOME/.gem`.
47-
So if you want to execute commands installed by gems, such as `rails` and
48-
`rspec`, without using `bundle exec`, you have to add the following line
49-
to your shell rc files (like `.bashrc`):
44+
루비 snap은 `GEM_HOME``GEM_PATH` 환경 변수를 `$HOME/.gem`으로
45+
지정합니다.
46+
그러므로 만약 `rails``rspec`과 같은 설치 젬의 명령을 `bundle exec` 없이
47+
실행하고 싶다면 아래의 명령을 쉘 rc 파일(예를 들어 `.bashrc`)에 추가해야
48+
합니다.
5049

5150
```
5251
eval `ruby.env`
5352
```
5453

55-
Since `$HOME/.gem` is shared by multiple versions, if you switch versions
56-
and use them, you will need to recompile C extensions using the
57-
`gem pristine --extensions` command.
54+
`$HOME/.gem`은 여러 버전에서 공유되므로, 만약 버전을 변경하고 이를 사용한다면,
55+
`gem pristine --extensions` 명령을 이용해서 C 확장을 다시 컴파일해야 합니다.
5856

59-
The initial version of the official Ruby snap has been released during
60-
the Snapcraft summit held at the Canonical office in London on Nov 6-8th, 2018.
61-
Any feedback is welcome at <https://github.com/ruby/snap.ruby>.
57+
공식 루비 snap의 첫 버전은 2018년 11월 6일부터 8일까지 런던의
58+
Canonical 오피스에서 개최된 Snapcraft 서밋에서 릴리스 되었습니다.
59+
문제나 개선점이 있는 경우 <https://github.com/ruby/snap.ruby>로 피드백을 보내주세요.
6260

63-
Enjoy!
61+
즐겨보세요!

0 commit comments

Comments
 (0)