739件ヒット
[1-100件を表示]
(0.207秒)
クラス
-
Logger
:: Application (7) -
Net
:: HTTP (72) -
OpenSSL
:: X509 :: StoreContext (12) -
Rake
:: Application (132) -
Rake
:: FileTask (24) -
Rake
:: Task (24) - WIN32OLE (96)
-
WIN32OLE
_ EVENT (36) -
WIN32OLE
_ METHOD (36) -
WIN32OLE
_ TYPE (60)
モジュール
-
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) - error= (12)
- form (48)
-
form
_ data= (12) - guid (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) -
ole
_ type (12) -
on
_ event (12) -
on
_ event _ with _ outargs (12) -
original
_ dir (12) - post (24)
- post2 (24)
- progid (12)
- rakefile (12)
-
request
_ post (24) -
return
_ type (12) -
return
_ type _ detail (12) -
return
_ vtype (12) - run (12)
-
set
_ form _ data (12) -
set
_ log (1) - setproperty (24)
- start (1)
-
synthesize
_ file _ task (12) - tasks (12)
-
to
_ s (12) -
top
_ level (12) -
top
_ level _ tasks (12) -
tty
_ output= (12)
検索結果
先頭5件
-
Rake
:: Task # application -> Rake :: Application (27519.0) -
自身を所有している Rake::Application のインスタンスを返します。
...自身を所有している Rake::Application のインスタンスを返します。... -
Rake
:: Task # application=(app) (15218.0) -
自身を所有している Rake::Application のインスタンスをセットします。
...自身を所有している Rake::Application のインスタンスをセットします。
@param app 自身を所有しているアプリケーションを指定します。... -
Rake
:: Application # options -> OpenStruct (15207.0) -
コマンドラインで与えられたアプリケーションのオプションを返します。
.../emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.options # => #<OpenStruct always_multitask=false, backtrace=false, build_all=false, dryrun=false, ignore_deprecate=false, ignore_system=false, job_stats=false, load_system=fa......lse, nosearch=false, rakelib=["rakelib"], show_all_tasks=false, show_prereqs=false, show_task_pattern=nil, show_tasks=nil, silent=false, suppress_backtrace_pattern=nil, thread_pool_size=8, trace=false, trace_output=#<IO:<STDERR>>, trace_rules=false>
end
//}... -
Rake
:: Application # rakefile -> String (15207.0) -
実際に使用されている Rakefile の名前を返します。
...実際に使用されている Rakefile の名前を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.rakefile # => "Rakefile"
end
//}... -
Logger
:: Application # start -> () (15201.0) -
アプリケーションをスタートさせます。
...アプリケーションをスタートさせます。
@return run メソッドの返値を返します。
@raise RuntimeError サブクラスで run メソッドを定義していない場合に発生します。... -
Rake
:: Application # load _ rakefile (15101.0) -
Rakefile を探してロードします。
...
Rakefile を探してロードします。... -
Rake
:: TaskManager # define _ task(task _ class , *args) { . . . } -> Rake :: Task (12419.0) -
タスクを定義します。
...param task_class タスククラスを指定します。
@param args タスクに渡すパラメータを指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.define_task(Rake::Task, :t) # => <Rake::Task t =... -
Rake
:: FileTask # timestamp -> Time | Rake :: LateTime (12407.0) -
ファイルタスクのタイムスタンプを返します。
...ファイルタスクのタイムスタンプを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: "test.txt"
file "test.txt" do |task|
Rake.application.options.build_all = false
task.timestamp # => #<Rake::LateTime:0x2ba58f0>
end
//}... -
Logger
:: Application # set _ log(logdev , shift _ age = 0 , shift _ size = 1024000) -> Integer (12401.0) -
内部で使用する Logger のオブジェクトを初期化します。
...内部で使用する Logger のオブジェクトを初期化します。
@param logdev ログを書き込むファイル名か、 IO オブジェクト(STDOUT, STDERR など)を指定します。
@param shift_age ログファイルを保持する数か、ログファイルを切り替える頻......指定します。
頻度には daily, weekly, monthly を文字列で指定することができます。
省略すると、ログの保存先を切り替えません。
@param shift_size shift_age を整数で指定した場合のみ有効です。......このサイズでログファイルを切り替えます。
@return ログのログレベルを返します。... -
Rake
:: TaskManager # last _ description=(description) (12319.0) -
最新の詳細説明をセットします。
...ist[][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 :test_ra......ke_app2 do |task|
end
//}... -
Rake
:: Application # original _ dir -> String (12307.0) -
rake コマンドを実行したディレクトリを返します。
...
rake コマンドを実行したディレクトリを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.original_dir # => "/path/to/dir"
end
//}...