3件ヒット
[1-3件を表示]
(0.120秒)
ライブラリ
-
net
/ http (1) - rake (1)
-
rdoc
/ context (1)
クラス
モジュール
-
Net
:: HTTPHeader (1) -
Rake
:: TaskManager (1)
キーワード
-
content
_ type (1) -
last
_ description (1)
検索結果
先頭3件
-
RDoc
:: Context :: Section # comment -> String | nil (90910.0) -
section のコメントを返します。
section のコメントを返します。 -
Net
:: HTTPHeader # content _ type -> String|nil (36925.0) -
"text/html" のような Content-Type を表す 文字列を返します。
"text/html" のような Content-Type を表す
文字列を返します。
Content-Type: ヘッダフィールドが存在しない場合には nil を返します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/comments.cgi?post=comment')
req = Net::HTTP::Post.new(uri.request_uri)
req.content_type # => nil
req.content_type = 'multipart/for... -
Rake
:: TaskManager # last _ description -> String (36913.0) -
Rakefile 内の最新の詳細説明を追跡するためのメソッドです。
Rakefile 内の最新の詳細説明を追跡するためのメソッドです。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app1
desc "test1"
task :test_rake_app1 do |task|
p task.application.last_description # => "test2"
end
desc "test2"
task :test_rake_app2 do |task|
end
//}