るりまサーチ

最速Rubyリファレンスマニュアル検索!
2288件ヒット [1-100件を表示] (0.094秒)
トップページ > クエリ:d[x] > クエリ:cat[x]

別のキーワード

  1. bigdecimal/util to_d
  2. float to_d
  3. rsa d
  4. rsa d=
  5. matrix d

キーワード

検索結果

<< 1 2 3 ... > >>

debug (26006.0)

Ruby デバッガです。Ruby スクリプトのソースコードデバッグに使用します。

...、Emacs を使用したインタフェース rubydb3x.el が
https://github.com/ruby/elisp にあるので、活用してください。

=== 使い方

$ ruby -rdebug foo.rb

または、Emacs から

M-x load-library rubydb3x.el
M-x rubydb

=== デバッグコマンド

以下は、デ...
...げたもの以外を入力した場合、その入力を ruby の式として評価します。

: break
: break [<file>:]<position>|<class>:<method>
ブレークポイントを設定します。引数を省略した場合設定したブレークポ
イントを表示します。

...
...た場合は現在実行中のファイルを指定した
ものと見倣されます。

このコマンドの省略形は b です。

: catch <an Exception>
例外が発生した時にデバッガを停止させるキャッチポイントを設定します。
引数を省略した...

Gem::DependencyList#dependency_order -> [Gem::Specification] (24400.0)

依存する Gem の数が少ない順にソートされた Gem::Specification のリストを返します。

...依存する Gem の数が少ない順にソートされた Gem::Specification のリストを返します。

このことは、インストール済みの Gem を削除するときに便利です。
このメソッドで返された順にインストール済みの Gem 削除すると、
依存...
...If there are circular dependencies (yuck!), then gems will be
returned in order until only the circular dependents and anything
they reference are left. Then arbitrary gemspecs will be returned
until the circular dependency is broken, after which gems will be
returned in dependency order again....

Gem::Specification#development_dependencies -> Array (21300.0)

この Gem が依存している Gem のリストを返します。

この Gem が依存している Gem のリストを返します。

Shell::CommandProcessor#cat(*files) -> Shell::Filter (21113.0)

実行すると, それらを内容とする Filter オブジェクトを返します.

....

@param files シェルコマンド cat に与えるファイル名を文字列で指定します。

動作例
require 'shell'
Shell.def_system_command("head")
sh = Shell.new
sh.transact {
glob("*.txt").to_a.each { |file|
file.chomp!
cat
(file).each { |l|
echo(l) |...

Gem::Specification#dependencies -> Array (15200.0)

依存している Gem のリストを返します。

...依存している Gem のリストを返します。

@see Gem::Dependency...

絞り込み条件を変える

Gem::Specification#dependent_gems -> Array (15200.0)

この Gem に依存している全ての Gem の情報のリストを返します。

...この Gem に依存している全ての Gem の情報のリストを返します。

それぞれのエントリは配列になっており、各要素は以下のようになっています。

(0) Gem::Specification
(1) Gem::Dependency
(2) Gem::Specification の配列...

Gem::Specification#runtime_dependencies -> Array (15200.0)

この Gem パッケージが依存している Gem パッケージのリストを返します。

この Gem パッケージが依存している Gem パッケージのリストを返します。

static NODE * literal_concat_dstr(NODE *head, NODE *tail) (12400.0)

Gem::SourceIndex.load_specification(file_name) -> Gem::Specification | nil (12300.0)

与えられたファイル名から Ruby スクリプト形式の gemspec をロードして Gem::Specification のインスタンスを返します。

...与えられたファイル名から Ruby スクリプト形式の gemspec をロードして
Gem::Specification のインスタンスを返します。

@param file_name ファイル名を指定します。

@raise SignalException gemspec をロードしているときに発生します。

@raise...
<< 1 2 3 ... > >>