るりまサーチ (Ruby 2.5.0)

最速Rubyリファレンスマニュアル検索!
44件ヒット [1-44件を表示] (0.046秒)
トップページ > クエリ:IO[x] > バージョン:2.5.0[x] > クエリ:description[x]

別のキーワード

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

検索結果

Gem::Specification#description -> String (81604.0)

Gem パッケージの説明を返します。

Gem パッケージの説明を返します。

Net::IMAP::BodyTypeBasic#description -> String | nil (72652.0)

Content-Description の値を文字列で返します。

Content-Description の値を文字列で返します。

@see 2045

Net::IMAP::BodyTypeMessage#description -> String | nil (72652.0)

Content-Description の値を文字列で返します。

Content-Description の値を文字列で返します。

@see 2045

Net::IMAP::BodyTypeText#description -> String | nil (72652.0)

Content-Description の値を文字列で返します。

Content-Description の値を文字列で返します。

@see 2045

RSS::Maker::ChannelBase#description (72607.0)

@todo

@todo

絞り込み条件を変える

RSS::Maker::ImageBase#description (72607.0)

@todo

@todo

RSS::Maker::ItemsBase::ItemBase#description (72607.0)

@todo

@todo

RSS::Maker::TextinputBase#description (72607.0)

@todo

@todo

RSS::RDF::Channel#description (72607.0)

@todo

@todo

RSS::RDF::Item#description (72607.0)

@todo

@todo

絞り込み条件を変える

RSS::RDF::Textinput#description (72607.0)

@todo

@todo

RSS::Rss::Channel#description (72607.0)

@todo

@todo

RSS::Rss::Channel::Image#description (72607.0)

@todo

@todo

RSS::Rss::Channel::Item#description (72607.0)

@todo

@todo

RSS::Rss::Channel::TextInput#description (72607.0)

@todo

@todo

絞り込み条件を変える

Gem::Command#description -> String (72604.0)

このメソッドはサブクラスで再定義されます。 コマンドが実行することを説明する文字列を返します。

このメソッドはサブクラスで再定義されます。
コマンドが実行することを説明する文字列を返します。

Gem::Specification#description=(desc) (45604.0)

Gem パッケージの説明をセットします。

Gem パッケージの説明をセットします。

@param desc パッケージの詳細を説明する文章を指定します。

Rake::TaskManager#last_description=(description) (37261.0)

最新の詳細説明をセットします。

最新の詳細説明をセットします。

//emlist[][ruby]{
# Rakefile での記載例とする

task default: :test_rake_app1

desc "test1"
task :test_rake_app1 do |task|
task.application.last_description # => "test2"
task.application.last_description = "test3"
task.application.last_description # => "test3"
end

desc "test2"
task :...

Rake::Task#add_description(description) (37207.0)

自身に詳細説明を追加します。

自身に詳細説明を追加します。

DublinCoreModel#dc_description (36607.0)

@todo

@todo

絞り込み条件を変える

DublinCoreModel#dc_description= (36607.0)

@todo

@todo

RSS::Maker::ChannelBase#description=() (36607.0)

@todo

@todo

RSS::Maker::ImageBase#description=() (36607.0)

@todo

@todo

RSS::Maker::ItemsBase::ItemBase#description=() (36607.0)

@todo

@todo

RSS::Maker::TextinputBase#description=() (36607.0)

@todo

@todo

絞り込み条件を変える

RSS::RDF::Channel#description= (36607.0)

@todo

@todo

RSS::RDF::Item#description= (36607.0)

@todo

@todo

RSS::RDF::Textinput#description= (36607.0)

@todo

@todo

RSS::Rss::Channel#description= (36607.0)

@todo

@todo

RSS::Rss::Channel::Image#description= (36607.0)

@todo

@todo

絞り込み条件を変える

RSS::Rss::Channel::Item#description= (36607.0)

@todo

@todo

RSS::Rss::Channel::TextInput#description= (36607.0)

@todo

@todo

Object::RUBY_DESCRIPTION -> String (36604.0)

Ruby の詳細を表す文字列。

Ruby の詳細を表す文字列。

ruby -v で表示される内容が格納されています。

RDoc::Generator::RI::DESCRIPTION -> String (36604.0)

このジェネレータの説明を表す文字列です。

このジェネレータの説明を表す文字列です。

Rake::Task#arg_description (36604.0)

絞り込み条件を変える

DublinCoreModel#dc_descriptions (36601.0)

@todo

@todo

Rake.application -> Rake::Application (18637.0)

現在の Rake アプリケーションを返します。

現在の Rake アプリケーションを返します。

//emlist[][ruby]{
# Rakefile での記載例とする

require 'pp'

task default: :test_rake_app
task :test_rake_app do
pp Rake.application
end

# => #<Rake::Application:0x31b0f18
# @default_loader=#<Rake::DefaultLoader:0x31b0c78>,
# @imported=[],
# @last_description=nil,
# ...

Rake::TaskManager#last_description -> String (18622.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
//}

Rake.application=(app) (18337.0)

現在の Rake アプリケーションをセットします。

現在の Rake アプリケーションをセットします。

@param app Rake::Application のインスタンスを指定します。

//emlist[][ruby]{
# Rakefile での記載例とする

require 'pp'

task default: :test_rake_app
task :test_rake_app do
app = Rake::Application.new
app.tty_output = true
Rake.application = app
pp Rake.application
end

# => #<Rake::App...

OptionParser#summarize(to = [], width = self.summary_width, max = width - 1, indent= self.summary_indent) -> () (9037.0)

サマリを指定された to へと加えていきます。

サマリを指定された to へと加えていきます。

ブロックが与えられた場合、サマリの各行を引数としてブロックを評価します。
この場合、ブロックの中で明示的に to へと加えていかない限り、
to にサマリが加えられることはありません。

@param to サマリを出力するオブジェクトを指定します。to には << メソッドが定義されいる必要があります。

@param width サマリの幅を整数で指定します。

@param max サマリの最大幅を整数で指定します。

@param indent サマリのインデントを文字列で指定します。

//emlist[例][ruby]{
requ...

絞り込み条件を変える

OptionParser#summarize(to = [], width = self.summary_width, max = width - 1, indent= self.summary_indent) {|line| ... } -> () (9037.0)

サマリを指定された to へと加えていきます。

サマリを指定された to へと加えていきます。

ブロックが与えられた場合、サマリの各行を引数としてブロックを評価します。
この場合、ブロックの中で明示的に to へと加えていかない限り、
to にサマリが加えられることはありません。

@param to サマリを出力するオブジェクトを指定します。to には << メソッドが定義されいる必要があります。

@param width サマリの幅を整数で指定します。

@param max サマリの最大幅を整数で指定します。

@param indent サマリのインデントを文字列で指定します。

//emlist[例][ruby]{
requ...

Gem::Command#summary=(description) (622.0)

コマンドの短い説明をセットします。

コマンドの短い説明をセットします。

@param description コマンドの短い説明を指定します。

Kernel#desc(description) -> String (622.0)

直後の Rake タスクの説明を登録します。

直後の Rake タスクの説明を登録します。

@param description 直後のタスクの説明を指定します。

例:
desc "Run the Unit Tests"
task :test => [:build] do
runtests
end

rss (415.0)

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

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 をサポートしていますが,RSS 0.90
はサポートしてませ...