279件ヒット
[1-100件を表示]
(0.032秒)
種類
- インスタンスメソッド (96)
- 特異メソッド (66)
- ライブラリ (60)
- 文書 (33)
- クラス (24)
ライブラリ
- ビルトイン (48)
- prettyprint (60)
- psych (12)
- rake (12)
-
rexml
/ document (36) - shell (12)
-
shell
/ process-controller (6)
クラス
-
Encoding
:: Converter (48) - PrettyPrint (60)
-
REXML
:: DocType (12) -
REXML
:: ExternalEntity (12) -
Rake
:: Application (12) - Shell (12)
-
Shell
:: ProcessController (6)
キーワード
- Emitter (12)
-
NEWS for Ruby 3
. 0 . 0 (5) -
NEWS for Ruby 3
. 1 . 0 (4) - Pretty (12)
-
block
_ output _ synchronize (6) -
debug
_ output _ synchronize (6) -
debug
_ output _ try _ lock (6) - format (12)
- new (24)
- prettyprint (12)
-
primitive
_ convert (48) - rss (12)
-
ruby 1
. 8 . 3 feature (12) -
ruby 1
. 9 feature (12) -
rubygems
/ commands / specification _ command (12) -
rubygems
/ package / tar _ output (12) -
rubygems
/ security (12) -
singleline
_ format (12) -
tty
_ output= (12) - write (24)
検索結果
先頭5件
-
PrettyPrint
# output -> object (21117.0) -
自身の output を返します。
...自身の output を返します。... -
Rake
:: Application # tty _ output=(tty _ output _ state) (12444.0) -
TTY に対する出力状態を上書きします。
...TTY に対する出力状態を上書きします。
大抵の場合、テストのために使用します。
@param tty_output_state 変更後の状態を指定します
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.applicatio......n.tty_output? # => false
Rake.application.tty_output = "debug output" # => "debug output"
Rake.application.tty_output? # => "debug output"
end
//}... -
Shell
. debug _ output _ synchronize (12201.0) -
@todo
...@todo
@see Mutex#synchronize......@todo
@see Thread::Mutex#synchronize... -
Shell
. debug _ output _ try _ lock -> bool (12201.0) -
@todo
...@todo
@see Mutex#try_lock......@todo
@see Thread::Mutex#try_lock... -
Shell
:: ProcessController . block _ output _ synchronize { . . . } -> () (12201.0) -
@todo
@todo -
rubygems
/ package / tar _ output (12000.0) -
gem-format な tar ファイルを書き出す Gem::Package::TarWriter のラッ パークラスを提供するライブラリです。
gem-format な tar ファイルを書き出す Gem::Package::TarWriter のラッ
パークラスを提供するライブラリです。 -
REXML
:: Formatters :: Pretty (6018.0) -
XMLドキュメントを(文字列として)見た目良く出力するクラスです。
...list[][ruby]{
require 'rexml/document'
require 'rexml/formatters/pretty'
doc = REXML::Document.new <<EOS
<root>
<children>
<grandchildren foo='bar'/>
</children>
</root>
EOS
pretty_formatter = REXML::Formatters::Pretty.new
output = StringIO.new
pretty_formatter.write(doc, output)
output.string
#... -
rubygems
/ security (6012.0) -
このライブラリは暗号署名を RubyGems パッケージに使用するために使用します。
...このライブラリは暗号署名を RubyGems パッケージに使用するために使用します。
=== 署名付きの Gem パッケージ
==== 目次
* 概要
* 解説
* コマンドラインオプション
* OpenSSL リファレンス
* Bugs / TODO
* 作者について
==== 概......要
このライブラリは暗号署名を RubyGems パッケージに使用するために使用します。
以下のセクションでは、署名付きの Gem パッケージを作成する方法を
ステップバイステップで解説しています。
==== 解説
@todo メソッドでは......t output.der
人間に読みやすいフォーマットで証明書を出力する :
$ openssl x509 -in input.pem -noout -text
秘密鍵に対しても同じことができます。
PEM フォーマットの RSA 鍵を DER フォーマットに変換します :
$ openssl rsa -in input_key... -
prettyprint (6006.0)
-
pretty printing アルゴリズムのためのライブラリです。
...pretty printing アルゴリズムのためのライブラリです。
=== 使い方
pretty printing アルゴリズムは読みやすいインデントと改行を決定するためのアルゴリズムです。
インデントと改行はユーザによって与えられたツリー構造から......を作成する必要があります。
* PrettyPrint.new でバッファを生成します。このとき、バッファの幅と改行文字を指定します。
* PrettyPrint#text を使って、文字列を適宜 挿入します。
* PrettyPrint#group を使って子ノードをつくりま......改行します。
//emlist[][ruby]{
require 'prettyprint'
p2 = PrettyPrint.new('', 10)
s = 'hello'
p2.text(s)
p2.group(p2.indent + s.size + 1) do
p2.breakable
p2.text('a')
p2.breakable
p2.text('b')
p2.breakable
p2.text('c')
end
p2.flush
puts p2.output
#=>
# hello
# a
# b
#... -
rubygems
/ commands / specification _ command (6006.0) -
指定された Gem パッケージの gemspec の情報を YAML 形式で表示するためのライブラリです。
...ージの gemspec の情報を YAML 形式で表示するためのライブラリです。
Usage: gem specification [GEMFILE] [options]
Options:
-v, --version VERSION Specify version of gem to examine
--platform PLATFORM Specify the platform of gem to speci......d for switching to bulk
synchronization (default 1000)
--source URL Gem パッケージのリモートリポジトリの URL を指定します
--[no-]http-proxy [URL] リモートの操作に HTTP プロクシを使用......--debug Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMFILE gemspec を表示する Gem パッケージ名を指定します
Summary:
Gem パッケージの仕様を YAML 形式で表示します
Defaults:...