703件ヒット
[1-100件を表示]
(0.130秒)
クラス
-
Logger
:: Application (7) -
Net
:: HTTP (72) -
OpenSSL
:: ASN1 :: ASN1Data (24) -
Rake
:: Application (132) -
Rake
:: FileTask (24) -
Rake
:: Task (24) - WIN32OLE (108)
-
WIN32OLE
_ EVENT (36) -
WIN32OLE
_ METHOD (12) -
WIN32OLE
_ TYPE (24)
モジュール
-
CGI
:: HtmlExtension (48) -
Net
:: HTTPHeader (24) -
OpenURI
:: Meta (12) -
Rake
:: TaskManager (156)
キーワード
- [] (12)
-
_ getproperty (12) -
_ invoke (12) -
_ setproperty (12) -
add
_ loader (12) - application= (12)
- appname (1)
- clear (12)
-
content
_ type (12) -
create
_ rule (12) -
current
_ scope (12) -
define
_ task (12) - each (12)
- form (48)
-
form
_ data= (12) - handler= (12)
-
in
_ namespace (12) - init (12)
- intern (12)
- invoke (12)
-
last
_ comment (12) -
last
_ description (12) -
last
_ description= (12) - level= (1)
-
load
_ rakefile (12) - log (2)
- log= (1)
- lookup (12)
- name (24)
- needed? (12)
-
ole
_ query _ interface (12) -
ole
_ respond _ to? (12) -
on
_ event (12) -
on
_ event _ with _ outargs (12) -
original
_ dir (12) - post (24)
- post2 (24)
- rakefile (12)
-
request
_ post (24) -
return
_ type _ detail (12) - run (12)
-
set
_ form _ data (12) -
set
_ log (1) - setproperty (24)
- start (1)
-
synthesize
_ file _ task (12) -
tag
_ class (12) -
tag
_ class= (12) - tasks (12)
-
to
_ s (12) -
top
_ level (12) -
top
_ level _ tasks (12) -
tty
_ output= (12)
検索結果
先頭5件
-
Rake
:: Task # application -> Rake :: Application (24419.0) -
自身を所有している Rake::Application のインスタンスを返します。
...自身を所有している Rake::Application のインスタンスを返します。... -
Rake
:: Application # add _ loader(ext , loader) (12361.0) -
与えられた拡張子で終わるファイル名のファイルをロードするためのローダーを 自身に追加します。
...@param ext 拡張子を指定します。
@param loader ローダーを指定します。
//emlist[例][ruby]{
require "rake/loaders/makefile"
# Rakefile での記載例とする
task default: :test
task :test
makefile =<<-EOS
<< <<-'SAMPLE_MF'
# Comments
a: a1 a2 a3 a4
EOS
IO.write("sample.m......f", makefile)
Rake.application.add_loader("mf", Rake::MakefileLoader.new)
Rake.application.add_import("sample.mf")
Rake::Task.task_defined?("a") # => false
Rake.application.load_imports
Rake::Task.task_defined?("a") # => true
//}... -
Rake
:: Task # application=(app) (12318.0) -
自身を所有している Rake::Application のインスタンスをセットします。
...自身を所有している Rake::Application のインスタンスをセットします。
@param app 自身を所有しているアプリケーションを指定します。... -
OpenSSL
:: ASN1 :: ASN1Data # tag _ class=(tag _ class) (12207.0) -
タグクラスを設定します。
...タグクラスを設定します。
@param tag_class 設定するタグクラス。:UNIVERSAL、:ONTEXT_SPECIFIC、:APPLICATION、:PRIVATE のいずれか
@see OpenSSL::ASN1::ASN1Data#tag_class... -
OpenSSL
:: ASN1 :: ASN1Data # tag _ class -> Symbol (12107.0) -
タグクラスを返します。
...タグクラスを返します。
:UNIVERSAL、:CONTEXT_SPECIFIC、:APPLICATION, :PRIVATE のいずれかを返します。
@see OpenSSL::ASN1::ASN1Data#tag_class=... -
Rake
:: Application # rakefile -> String (12107.0) -
実際に使用されている Rakefile の名前を返します。
...実際に使用されている Rakefile の名前を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.rakefile # => "Rakefile"
end
//}... -
Logger
:: Application # appname -> String (12101.0) -
アプリケーション名を取得します。
アプリケーション名を取得します。 -
Rake
:: Application # load _ rakefile (12101.0) -
Rakefile を探してロードします。
...Rakefile を探してロードします。... -
Rake
:: Application # name -> String (9107.0) -
アプリケーションの名前を返します。通常は 'rake' という名前を返します。
...アプリケーションの名前を返します。通常は 'rake' という名前を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.name # => "rake"
end
//}... -
Rake
:: Application # original _ dir -> String (9107.0) -
rake コマンドを実行したディレクトリを返します。
...rake コマンドを実行したディレクトリを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.original_dir # => "/path/to/dir"
end
//}...