るりまサーチ

最速Rubyリファレンスマニュアル検索!
66件ヒット [1-66件を表示] (0.061秒)
トップページ > クエリ:IO[x] > クエリ:-[x] > 種類:ライブラリ[x]

別のキーワード

  1. io popen
  2. io pipe
  3. io each
  4. io each_line
  5. io readlines

検索結果

rubygems/commands/specification_command (6079.0)

指定された Gem パッケージの gemspec の情報を YAML 形式で表示するためのライブラリです。

...: gem specification [GEMFILE] [options]
Options:
-
v, --version VERSION Specify version of gem to examine
-
-platform PLATFORM Specify the platform of gem to specification
-
-all Output specifications for all versions of...
...mote Options:
-
l, --local 操作をローカルに限定します
-
r, --remote 操作をリモートに限定します
-
b, --both ローカルとリモートの両方の操作を許可します
-
B, --bulk-threshol...
...synchronization (default 1000)
-
-source URL Gem パッケージのリモートリポジトリの URL を指定します
-
-[no-]http-proxy [URL] リモートの操作に HTTP プロクシを使用します
-
u, --[no-]update-sources ロー...

cgi/session (6043.0)

CGI のセッション管理を行うライブラリ。

...ession を使用した方がよりわかりやすいでしょう。
セッション情報は Hash ライクなインターフェースです。

セッションはセッション ID とプログラムが記録した
セッション情報から構成されます。
デフォルトでは CGI::Session:...
...:FileStore が使用され、
記録できるのは文字列のみです。

セッション情報は CGI::Session::FileStore か
CGI::Session::PStore を使用した場合は
サーバのローカルファイルに記録され、
次回のリクエスト時に利用されます。
デフォルト...
...いために、
ブラウザを終了した時点で消滅します。

=== 使い方 (生成)

require 'cgi/session'
cgi = CGI.new
session = CGI::Session.new(cgi)

CGI::Session.new に CGI オブジェクトを渡します。クライアントから渡された
セッション ID はクッキ...

irb/completion (6007.0)

irb の completion 機能を提供するライブラリです。

...irb の completion 機能を提供するライブラリです。

=== 使い方

$ irb -r irb/completion

とするか, ~/.irbrc 中に

require "irb/completion"

を入れてください.
irb実行中に require "irb/completion" してもよいです.

irb 実行中に [Tab] を押すとコ...

test/unit (127.0)

ユニットテストを行うためのライブラリです。

...まし
た。詳しい内容は下記のプロジェクトページを参照してください。

* Test::Unit - Ruby用単体テストフレームワーク: https://test-unit.github.io/

なお、2.2.0より前のtest/unit は当時バンドルしていた minitest/unit を使って再実装し...
...* Rubyのテスティングフレームワークの歴史(2014年版) https://www.clear-code.com/blog/2014/11/6.html
* RubyKaigi 2015:The history of testing framework in Ruby https://www.clear-code.com/blog/2015/12/12.html

=== 使い方

Test::Unit は以下のように使います。...
...ed at -j option
-
q, --hide-skip Hide skipped tests
-
b, --basedir=DIR Base directory of test suites.
-
x, --exclude PATTERN Exclude test files on pattern.
-
Idirectory Add library load path
-
-[no-]gc-stres...

yaml (127.0)

構造化されたデータを表現するフォーマットであるYAML (YAML Ain't Markup Language) を扱うためのライブラリです。

...OT
-
--
-
Taro san
-
Jiro san
-
Saburo san
YAML_EOT

p str_r == str_l # => true
//}

//emlist[例2: 構造化されたハッシュ][ruby]{
require 'yaml'
require 'date'

str_l = <<~YAML_EOT
Tanaka Taro: {age: 35, birthday: 1970-01-01}
Suzuki Suneo: {
age: 13,
birthday: 1992-12-21...
...re 'yaml'
require 'stringio'

strio_r = StringIO.new(<<~YAML_EOT)
-
--
time: 2008-02-25 17:03:12 +09:00
target: YAML
version: 4
log: |
例を加えた。
アブストラクトを修正した。
-
--
time: 2008-02-24 17:00:35 +09:00
target: YAML
version: 3
log: |
アブ...
...am(strio_r).sort_by{ |a| a["version"] }.each do |obj|
puts "version %d\ntime %s\ntarget:%s\n%s\n" % obj.values_at("version", "time", "target", "log")
end

# =>
# version 3
# time 2008-02-24 17:00:35 +0900
# target:YAML
# アブストラクトを書いた。
#
# version 4
# time 2008-02-25 17...

絞り込み条件を変える

rss (73.0)

RSS を扱うためのライブラリです。

...=== 参考

* RSS 0.91 http://backend.userland.com/rss091
* RSS 1.0 http://purl.org/rss/1.0/spec
* RSS 2.0 http://www.rssboard.org/rss-specification
* Atom 1.0 https://www.ietf.org/rfc/rfc4287.txt

=== 注意

RSS ParserはRSS 0.9x/1.0/2.0, Atom 1.0 をサポートしていますが,RS...
...ュールはそれぞれ、
* Dublin Core モジュール http://web.resource.org/rss/1.0/modules/dc/
* Syndication モジュール http://web.resource.org/rss/1.0/modules/syndication/
* Content モジュール http://web.resource.org/rss/1.0/modules/content/
* Trackback モジュール http://...
...RSS::Parser クラスを使います。
RSS::Parser.parse は String の RSSを パースします(使用するXMLパー
サによっては File や IO オブジェクトなどでもパース可能です)。
* RSS 1.0をパースした場合は RSS::RDF オブジェクト
* RSS 0.9x/2.0をパー...

test/unit (31.0)

ユニットテストを行うためのライブラリです。

...まし
た。詳しい内容は下記のプロジェクトページを参照してください。

* Test::Unit - Ruby用単体テストフレームワーク: https://test-unit.github.io/

なお、2.2.0より前のtest/unit は当時バンドルしていた minitest/unit を使って再実装し...
...史については以下が詳しくまとまっています。

* Rubyのテスティングフレームワークの歴史(2014年版) https://www.clear-code.com/blog/2014/11/6.html
* RubyKaigi 2015:The history of testing framework in Ruby https://www.clear-code.com/blog/2015/12/12.html...