Rubygems: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
(Created page with "== Overview == Ruby gems 내용 정리 == Basic == == gem build == RubyGems 는 시스템에서 루비 소프트웨어 패키지를 쉽게 다운로드, 설치, 관리하도...")
 
No edit summary
Line 3: Line 3:


== Basic ==
== Basic ==
== gem build ==
RubyGems 는 시스템에서 루비 소프트웨어 패키지를 쉽게 다운로드, 설치, 관리하도록 한다. 소프트웨어 패키지는 "gem"이라고 불리고 루비 어플리케이션이나 라이브러리를 담고 있다.
RubyGems 는 시스템에서 루비 소프트웨어 패키지를 쉽게 다운로드, 설치, 관리하도록 한다. 소프트웨어 패키지는 "gem"이라고 불리고 루비 어플리케이션이나 라이브러리를 담고 있다.


gem 은 루비 어플리케이션의 기능을 추가하거나 수정하는데 사용할 수 있다.
gem 은 루비 어플리케이션의 기능을 추가하거나 수정하는데 사용할 수 있다.
=== GEM ===
각각의 gem 은 이름, 버전, 플랫폼을 가지고 있다. 예를 들어 rake gem 은 0.8.7 버전을 가지고 있고, 플랫폼은 ruby 이다. 이 말은 Ruby 가 돌아가는 어떤 플랫폼에서도 사용 가능하다는 의미이다.
플랫폼은 CPU 아키텍쳐, 운영체제 종류나 가끔은 운영체제 버전에 기반한다. 예를 들어 플랫폼에는 "x86-minggw32"나 "java" 같은게 있다. 플랫폼은 같은 플랫폼에서 빌드한 루비에서한 gem 이 동작하는 것을 나타낸다. RubyGems 는 자동으로 해당 플랫폼에 맞는 버전을 다운로드 한다. gem help platform 을 입력하면 더 자세한 설명을 확인할 수 있다.
<pre>
$ gem help platform
RubyGems platforms are composed of three parts, a CPU, an OS, and a
version.  These values are taken from values in rbconfig.rb.  You can view
your current platform by running `gem environment`.
RubyGems matches platforms as follows:
  * The CPU must match exactly, unless one of the platforms has
    "universal" as the CPU.
  * The OS must match exactly.
  * The versions must match exactly unless one of the versions is nil.
For commands that install, uninstall and list gems, you can override what
RubyGems thinks your platform is with the --platform option.  The platform
you pass must match "#{cpu}-#{os}" or "#{cpu}-#{os}-#{version}".  On mswin
platforms, the version is the compiler version, not the OS version.  (Ruby
compiled with VC6 uses "60" as the compiler version, VC8 uses "80".)
Example platforms:
  x86-freebsd        # Any FreeBSD version on an x86 CPU
  universal-darwin-8 # Darwin 8 only gems that run on any CPU
  x86-mswin32-80    # Windows gems compiled with VC8
When building platform gems, set the platform in the gem specification to
Gem::Platform::CURRENT.  This will correctly mark the gem with your ruby's
platform.
</pre>


== See also ==
== See also ==

Revision as of 13:46, 28 July 2017

Overview

Ruby gems 내용 정리

Basic

RubyGems 는 시스템에서 루비 소프트웨어 패키지를 쉽게 다운로드, 설치, 관리하도록 한다. 소프트웨어 패키지는 "gem"이라고 불리고 루비 어플리케이션이나 라이브러리를 담고 있다.

gem 은 루비 어플리케이션의 기능을 추가하거나 수정하는데 사용할 수 있다.

GEM

각각의 gem 은 이름, 버전, 플랫폼을 가지고 있다. 예를 들어 rake gem 은 0.8.7 버전을 가지고 있고, 플랫폼은 ruby 이다. 이 말은 Ruby 가 돌아가는 어떤 플랫폼에서도 사용 가능하다는 의미이다.

플랫폼은 CPU 아키텍쳐, 운영체제 종류나 가끔은 운영체제 버전에 기반한다. 예를 들어 플랫폼에는 "x86-minggw32"나 "java" 같은게 있다. 플랫폼은 같은 플랫폼에서 빌드한 루비에서한 gem 이 동작하는 것을 나타낸다. RubyGems 는 자동으로 해당 플랫폼에 맞는 버전을 다운로드 한다. gem help platform 을 입력하면 더 자세한 설명을 확인할 수 있다.

$ gem help platform
RubyGems platforms are composed of three parts, a CPU, an OS, and a
version.  These values are taken from values in rbconfig.rb.  You can view
your current platform by running `gem environment`.

RubyGems matches platforms as follows:

  * The CPU must match exactly, unless one of the platforms has
    "universal" as the CPU.
  * The OS must match exactly.
  * The versions must match exactly unless one of the versions is nil.

For commands that install, uninstall and list gems, you can override what
RubyGems thinks your platform is with the --platform option.  The platform
you pass must match "#{cpu}-#{os}" or "#{cpu}-#{os}-#{version}".  On mswin
platforms, the version is the compiler version, not the OS version.  (Ruby
compiled with VC6 uses "60" as the compiler version, VC8 uses "80".)

Example platforms:

  x86-freebsd        # Any FreeBSD version on an x86 CPU
  universal-darwin-8 # Darwin 8 only gems that run on any CPU
  x86-mswin32-80     # Windows gems compiled with VC8

When building platform gems, set the platform in the gem specification to
Gem::Platform::CURRENT.  This will correctly mark the gem with your ruby's
platform.

See also