るりまサーチ

最速Rubyリファレンスマニュアル検索!
140件ヒット [101-140件を表示] (0.015秒)
トップページ > クエリ:secure[x] > 種類:特異メソッド[x]

別のキーワード

  1. cookie secure
  2. cookie secure=
  3. fileutils remove_entry_secure
  4. cgi secure
  5. cgi secure=

ライブラリ

クラス

モジュール

キーワード

検索結果

<< < 1 2 >>

CGI::Session.new(request, option = {}) -> CGI::Session (7.0)

セッションオブジェクトを新しく作成し返します。

...なるドメインを指定します。
デフォルトでは、CGI を実行しているサーバのホスト名になります。

: session_secure
真を指定すると HTTPS の場合のみ有効になります。

: session_path
クッキーの path として使われます。
デフォ...

Dir.mktmpdir(prefix_suffix = nil, tmpdir = nil) -> String (7.0)

一時ディレクトリを作成します。

...レクトリは存在する。
begin
File.open("#{dir}/foo", "w") { |fp|
fp.puts "hogehoge"
}
ensure
FileUtils.remove_entry_secure dir
end
p FileTest.directory?(dir) #=> false

@raise ArgumentError tmpdirが全てのユーザから書き込み可能かつ、sticky...

Dir.mktmpdir(prefix_suffix = nil, tmpdir = nil) {|dir| ... } -> object (7.0)

一時ディレクトリを作成します。

...レクトリは存在する。
begin
File.open("#{dir}/foo", "w") { |fp|
fp.puts "hogehoge"
}
ensure
FileUtils.remove_entry_secure dir
end
p FileTest.directory?(dir) #=> false

@raise ArgumentError tmpdirが全てのユーザから書き込み可能かつ、sticky...

FileUtils.options -> Array (7.0)

オプション名の配列を返します。

...オプション名の配列を返します。

//emlist[][ruby]{
require 'fileutils'
FileUtils.options
# => ["verbose", "mode", "noop", "parents", "force", "preserve", "dereference_root", "remove_destination", "secure", "mtime", "nocreate"]
//}...
...オプション名の配列を返します。

//emlist[][ruby]{
require 'fileutils'
FileUtils.options
# => ["noop", "verbose", "force", "mode", "parents", "owner", "group", "preserve", "dereference_root", "remove_destination", "secure", "mtime", "nocreate"]
//}...
<< < 1 2 >>