るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
21件ヒット [1-21件を表示] (0.078秒)

別のキーワード

  1. rake ext
  2. irb/ext/save-history save_history
  3. pathname sub_ext
  4. irb/ext/tracer use_tracer
  5. irb/ext/tracer use_tracer=

ライブラリ

キーワード

検索結果

Gem::Ext (54004.0)

拡張ライブラリをビルドするためのモジュールです。

拡張ライブラリをビルドするためのモジュールです。

IRB::ContextExtender (36004.0)

IRB::Context を拡張するためのモジュールです。

IRB::Context を拡張するためのモジュールです。

JSON::Ext::Generator::GeneratorMethods::String::Extend (27004.0)

Alias of JSON::Generator::GeneratorMethods::String::Extend

Alias of JSON::Generator::GeneratorMethods::String::Extend

CGI::HtmlExtension (18004.0)

HTML を生成するためのメソッドを提供するモジュールです。

HTML を生成するためのメソッドを提供するモジュールです。

例:
cgi.a("http://www.example.com") { "Example" }
# => "<A HREF=\"http://www.example.com\">Example</A>"

CGI::QueryExtension (18004.0)

クエリ文字列を扱うためのメソッドを定義しているモジュールです。

クエリ文字列を扱うためのメソッドを定義しているモジュールです。

絞り込み条件を変える

IRB::ExtendCommandBundle (18004.0)

irb のコマンドを拡張するためのモジュールです。

irb のコマンドを拡張するためのモジュールです。

JSON::Generator::GeneratorMethods::String::Extend (18004.0)

String に JSON で使用する特異メソッドを追加するためのモジュールです。

String に JSON で使用する特異メソッドを追加するためのモジュールです。

RDoc::Parser::Text (18004.0)

プログラムを含まないテキストを解析するためのクラスです。

プログラムを含まないテキストを解析するためのクラスです。

単体では使用せず、RDoc::Parser のサブクラスで RDoc::Parser::Text
を include する事で、プログラムを含んでいない事を rdoc に伝えます。

RDoc::Text (18004.0)

コメントテキストを処理するためのクラスです。

コメントテキストを処理するためのクラスです。

CGI::QueryExtension::Value (9004.0)

絞り込み条件を変える

JSON::Ext::Generator::GeneratorMethods::Array (9004.0)

Alias of JSON::Generator::GeneratorMethods::Array

Alias of JSON::Generator::GeneratorMethods::Array

JSON::Ext::Generator::GeneratorMethods::FalseClass (9004.0)

Alias of JSON::Generator::GeneratorMethods::FalseClass

Alias of JSON::Generator::GeneratorMethods::FalseClass

JSON::Ext::Generator::GeneratorMethods::Float (9004.0)

Alias of JSON::Generator::GeneratorMethods::Float

Alias of JSON::Generator::GeneratorMethods::Float

JSON::Ext::Generator::GeneratorMethods::Hash (9004.0)

Alias of JSON::Generator::GeneratorMethods::Hash

Alias of JSON::Generator::GeneratorMethods::Hash

JSON::Ext::Generator::GeneratorMethods::Integer (9004.0)

Alias of JSON::Generator::GeneratorMethods::Integer

Alias of JSON::Generator::GeneratorMethods::Integer

絞り込み条件を変える

JSON::Ext::Generator::GeneratorMethods::NilClass (9004.0)

Alias of JSON::Generator::GeneratorMethods::NilClass

Alias of JSON::Generator::GeneratorMethods::NilClass

JSON::Ext::Generator::GeneratorMethods::Object (9004.0)

Alias of JSON::Generator::GeneratorMethods::Object

Alias of JSON::Generator::GeneratorMethods::Object

JSON::Ext::Generator::GeneratorMethods::String (9004.0)

Alias of JSON::Generator::GeneratorMethods::String

Alias of JSON::Generator::GeneratorMethods::String

JSON::Ext::Generator::GeneratorMethods::TrueClass (9004.0)

Alias of JSON::Generator::GeneratorMethods::TrueClass

Alias of JSON::Generator::GeneratorMethods::TrueClass

OpenSSL::OCSP (40.0)

OCSP(Online Certificate Status Protocol)を取り扱うための モジュールです。OCSP は 2560 で定義されています。

OCSP(Online Certificate Status Protocol)を取り扱うための
モジュールです。OCSP は 2560 で定義されています。

このモジュールは OCSP のリクエストとレスポンスを取り扱う
機能を持っています。

OCSP レスポンダと通信する機能はありません。ユーザが例えば
OCSP over http などを実装する必要があります。

=== 例
OCSP レスポンダにリクエストを送ってその返答を表示する
require 'openssl'
require 'net/http'
# ...
subject # 問い合わせ対象の証明書(Ce...

絞り込み条件を変える

NKF (22.0)

nkf(Network Kanji code conversion Filter, https://osdn.net/projects/nkf/) を Ruby から使うためのモジュールです。

nkf(Network Kanji code conversion Filter, https://osdn.net/projects/nkf/) を
Ruby から使うためのモジュールです。

=== 使い方

以下は、漢字コード変換コマンドの例です。

//emlist[例][ruby]{
#!/usr/local/bin/ruby

require 'nkf'

opt = ''
opt = ARGV.shift if ARGV[0][0] == ?-

while line = ARGF.gets
print NKF.nkf(opt, line)
end
//}

以下は、漢字コー...