324件ヒット
[1-100件を表示]
(0.018秒)
別のキーワード
キーワード
-
rake
/ gempackagetask (12) - rubygems (12)
-
rubygems
/ commands / build _ command (12) -
rubygems
/ commands / cert _ command (12) -
rubygems
/ commands / check _ command (12) -
rubygems
/ commands / cleanup _ command (12) -
rubygems
/ commands / contents _ command (12) -
rubygems
/ commands / dependency _ command (12) -
rubygems
/ commands / environment _ command (12) -
rubygems
/ commands / fetch _ command (12) -
rubygems
/ commands / generate _ index _ command (12) -
rubygems
/ commands / help _ command (12) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / list _ command (12) -
rubygems
/ commands / lock _ command (12) -
rubygems
/ commands / mirror _ command (12) -
rubygems
/ commands / outdated _ command (12) -
rubygems
/ commands / pristine _ command (12) -
rubygems
/ commands / query _ command (12) -
rubygems
/ commands / rdoc _ command (12) -
rubygems
/ commands / search _ command (12) -
rubygems
/ commands / server _ command (12) -
rubygems
/ commands / sources _ command (12) -
rubygems
/ commands / specification _ command (12) -
rubygems
/ commands / uninstall _ command (12) -
rubygems
/ commands / unpack _ command (12) -
rubygems
/ specification (12)
検索結果
先頭5件
-
rubygems (49.0)
-
RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。
...の警告が表示されます。
//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
end
//}
実用的なライブラリを作成するための gemspec の例を示します。
警告メッセージが出力されない......す。
//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
s.files = ['lib/hello.rb']
s.authors = ['Hello Author']
s.email = 'hello_author@example.com'......= 'hello description'
end
//}
: name
この Gem の名前を指定します。
: version
この Gem のバージョンを指定します。
: summary
この Gem の短い説明を指定します。
: files
この Gem に含むファイルのリストを指定します。
: authors
この... -
rake
/ gempackagetask (7.0) -
Gem Spec ファイルを元にして Gem パッケージを作成するタスクを定義するためのライブラリです。
...ージを作成します。
例:
require 'rubygems'
spec = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.summary = "Ruby based make-like utility."
s.name = 'rake'
s.version = PKG_VERSION
s.requirements << 'none'
s.require_path = 'lib'... -
rubygems
/ commands / build _ command (7.0) -
Gem パッケージをビルドするためのライブラリです。
...Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMSPEC_FILE Gem パッケージをビルドするのに必要な gemspec ファイル名を指定します
Summary:
gemspec ファイルから Gem パッケージをビルドします... -
rubygems
/ commands / cert _ command (7.0) -
Gem パッケージの証明書や署名の設定を管理するためのライブラリです。
...定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Summary:
Manage RubyGems certificates and signing settings... -
rubygems
/ commands / check _ command (7.0) -
インストールされている Gem パッケージを検証するためのライブラリです。
...ルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Summary:
インストールされている Gem パッケージをチェックします... -
rubygems
/ commands / cleanup _ command (7.0) -
ローカルにインストールされている古い Gem を削除するライブラリです。
...デバッグオプションを有効にします
Arguments:
GEMNAME 削除する Gem パッケージの名前を指定します
Summary:
ローカルリポジトリにインストールされている古いバージョンの
Gem パッケージを削除します
D... -
rubygems
/ commands / contents _ command (7.0) -
インストールされている Gem パッケージに含まれているファイルリストを表示するためのライブラリです。
...Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMNAME Gem パッケージの名前を指定します
Summary:
インストールされている Gem パッケージに含まれるファイルの一覧を表示します
Defaults:
--no-lib... -
rubygems
/ commands / dependency _ command (7.0) -
インストールされている Gem パッケージの依存関係を表示するためのライブラリです。
...デバッグオプションを有効にします
Arguments:
GEMNAME 依存関係を表示する Gem の名前を指定します
Summary:
インストールされている Gem の依存関係を表示します
Defaults:
--local --version '>= 0' --no-reverse-depende... -
rubygems
/ commands / environment _ command (7.0) -
RubyGems の環境に関する情報を表示するためのライブラリです。
...ersion Gem パッケージのフォーマットのバージョンを表示します
remotesources Gem パッケージを検索するサーバを表示します
<omitted> 省略すると全て表示します
Summary:
RubyGems の環境や設定を表示します...