708件ヒット
[1-100件を表示]
(0.025秒)
別のキーワード
ライブラリ
- ビルトイン (43)
-
cgi
/ session (12) - date (12)
- fileutils (12)
- json (12)
- openssl (24)
- rake (24)
- rss (348)
-
rubygems
/ remote _ fetcher (12) -
rubygems
/ source _ info _ cache (24) - shell (54)
-
shell
/ builtin-command (6) -
shell
/ command-processor (24) -
shell
/ filter (24) - shellwords (36)
- thread (5)
-
webrick
/ httputils (36)
クラス
-
CGI
:: Session :: NullStore (12) - Date (12)
- File (12)
-
Gem
:: RemoteFetcher (12) -
Gem
:: SourceInfoCache (24) - MatchData (1)
-
OpenSSL
:: BN (12) -
OpenSSL
:: SSL :: SSLServer (12) -
RSS
:: Maker :: XMLStyleSheets :: XMLStyleSheet (144) -
RSS
:: XMLStyleSheet (144) - Shell (54)
-
Shell
:: BuiltInCommand (6) -
Shell
:: CommandProcessor (24) -
Shell
:: Filter (24) - String (12)
-
Thread
:: Queue (12) -
Thread
:: SizedQueue (23)
モジュール
- FileUtils (36)
-
JSON
:: Generator :: GeneratorMethods :: FalseClass (12) -
RSS
:: XMLStyleSheetMixin (24) - Shellwords (24)
-
WEBrick
:: HTTPUtils (36)
キーワード
- DefaultMimeTypes (12)
-
OPT
_ TABLE (12) - XMLStyleSheet (24)
- XMLStyleSheetMixin (12)
-
_ xmlschema (12) -
alias
_ command (6) - alternate (24)
- alternate= (24)
- charset (24)
- charset= (24)
-
def
_ system _ command (6) -
fetch
_ path (12) - flock (12)
- flush (12)
- href (24)
- href= (24)
-
install
_ system _ commands (6) -
load
_ mime _ types (12) - lshift! (12)
- lstat (18)
- media (24)
- media= (24)
-
named
_ captures (1) - out (18)
-
parse
_ header (12) - push (11)
- refresh (12)
- restore (12)
- ruby (12)
- shellsplit (24)
- shellwords (12)
- shift (24)
- shutdown (12)
- system (18)
- title (24)
- title= (24)
-
to
_ json (12) - transact (18)
- type (24)
- type= (24)
-
unalias
_ command (6) -
undef
_ system _ command (6) - wait? (6)
-
xml
_ stylesheets (12) -
xml
_ stylesheets= (12)
検索結果
先頭5件
-
FileUtils
# sh(*cmd) {|result , status| . . . } (21131.0) -
与えられたコマンドを実行します。
...。
@param cmd 引数の解釈に関しては Kernel.#exec を参照してください。
例:
sh %{ls -ltr}
sh 'ls', 'file with spaces'
# check exit status after command runs
sh %{grep pattern file} do |ok, res|
if ! ok
puts "pattern not found (status = #{res.exit... -
RSS
:: Maker :: XMLStyleSheets :: XMLStyleSheet (18000.0) -
xml_stylesheetは maker.xml_stylesheet.new_xml_stylesheetで作成されたオ ブジェクトとします.
...xml_stylesheetは
maker.xml_stylesheet.new_xml_stylesheetで作成されたオ
ブジェクトとします.
hrefとtypeは必ず指定する必要があります.ただし,
hrefに設定した値の拡張子が.xslまたは.cssの場合は
typeを指定する必要はありません.自動... -
Shellwords
. # shellsplit(line) -> [String] (15200.0) -
Bourne シェルの単語分割規則に従った空白区切りの単語分割を行い、 単語 (文字列) の配列を返します。
...ォートが現れた場合に発生します。
例:
require 'shellwords'
p Shellwords.shellwords(%q{ foo bar "foo bar"\ baz 'foo bar' })
# => ["foo", "bar", "foo bar baz", "foo bar"]
p Shellwords.shellwords(%q{ A B C "D E F" "G","H I" })
# => ["A", "B", "C", "D... -
OpenSSL
:: BN # lshift!(n) -> self (12200.0) -
自身を n ビット左シフトします。 OpenSSL::BN#<<と異なり、破壊的メソッドです。
...ビット左シフトします。
OpenSSL::BN#<<と異なり、破壊的メソッドです。
//emlist[][ruby]{
require 'openssl'
bn = 1.to_bn
bn.lshift!(2) # => #<OpenSSL::BN 4>
bn # => #<OpenSSL::BN 4>
//}
@param n シフトするビット数
@raise OpenSSL::BNError 計算時エ... -
String
# shellsplit -> [String] (12200.0) -
Bourne シェルの単語分割規則に従った空白区切りの単語分割を行い、 単語 (文字列) の配列を返します。
...の単語分割規則に従った空白区切りの単語分割を行い、
単語 (文字列) の配列を返します。
string.shellsplit は、Shellwords.shellsplit(string) と等価です。
@return 分割結果の各文字列を要素とする配列を返します。
@raise ArgumentError 引......数の中に対でないシングルクォートまたはダブル
クォートが現れた場合に発生します。
@see Shellwords.#shellsplit... -
RSS
:: XMLStyleSheetMixin # xml _ stylesheets (12100.0) -
@todo
@todo -
RSS
:: XMLStyleSheetMixin # xml _ stylesheets= (12100.0) -
@todo
@todo -
Shellwords
. # shellwords(line) -> [String] (12100.0) -
Bourne シェルの単語分割規則に従った空白区切りの単語分割を行い、 単語 (文字列) の配列を返します。
...ォートが現れた場合に発生します。
例:
require 'shellwords'
p Shellwords.shellwords(%q{ foo bar "foo bar"\ baz 'foo bar' })
# => ["foo", "bar", "foo bar baz", "foo bar"]
p Shellwords.shellwords(%q{ A B C "D E F" "G","H I" })
# => ["A", "B", "C", "D... -
RSS
:: Maker :: XMLStyleSheets :: XMLStyleSheet # alternate (12000.0) -
@todo
@todo