48件ヒット
[1-48件を表示]
(0.093秒)
ライブラリ
-
rubygems
/ remote _ fetcher (24) - shellwords (12)
- uri (12)
クラス
-
Gem
:: RemoteFetcher (24) - String (12)
-
URI
:: MailTo (12)
キーワード
- headers= (12)
- shellescape (12)
- unescape (12)
検索結果
先頭4件
-
Gem
:: RemoteFetcher # escape(str) -> String (18120.0) -
URI 文字列をエンコードした文字列を返します。
...URI 文字列をエンコードした文字列を返します。
@param str 文字列を指定します。
@see URI.escape... -
String
# shellescape -> String (6119.0) -
文字列を Bourne シェルのコマンドライン中で安全に使えるようにエスケープします。
...文字列を Bourne シェルのコマンドライン中で安全に使えるようにエスケープします。
string.shellescape は、Shellwords.escape(string) と等価です。
@return エスケープされた文字列を返します。
@see Shellwords.#shellescape... -
Gem
:: RemoteFetcher # unescape(str) -> String (6113.0) -
URI 文字列をデコードした文字列を返します。
...URI 文字列をデコードした文字列を返します。
@param str 文字列を指定します。
@see URI.unescape... -
URI
:: MailTo # headers=(s) (25.0) -
自身のヘッダーを文字列で設定します。
...を文字列で設定します。
@param s ヘッダーを表す文字列を指定します。
@raise URI::InvalidComponentError 不正な引数 s に対して発生します。
例:
require 'uri'
m = URI.parse("mailto:nospam@example.com")
m.headers = URI.escape("subject=hello hello")...