895件ヒット
[1-100件を表示]
(0.130秒)
クラス
-
Logger
:: Application (7) -
Net
:: HTTP (72) -
OpenSSL
:: ASN1 :: ASN1Data (24) -
OpenSSL
:: X509 :: StoreContext (12) -
Rake
:: Application (132) -
Rake
:: FileTask (12) -
Rake
:: Task (24) - WIN32OLE (228)
-
WIN32OLE
_ EVENT (36) -
WIN32OLE
_ METHOD (36) -
WIN32OLE
_ TYPE (72)
モジュール
-
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)
- 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
_ free (12) -
ole
_ func _ methods (12) -
ole
_ get _ methods (12) -
ole
_ method (12) -
ole
_ method _ help (12) -
ole
_ methods (12) -
ole
_ obj _ help (12) -
ole
_ put _ methods (12) -
ole
_ query _ interface (12) -
ole
_ respond _ to? (12) -
ole
_ type (24) -
ole
_ typelib (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) -
tag
_ class (12) -
tag
_ class= (12) - tasks (12)
-
to
_ s (12) -
top
_ level (12) -
top
_ level _ tasks (12) -
tty
_ output= (12) - visible? (12)
検索結果
先頭5件
-
Rake
:: Task # application -> Rake :: Application (24419.0) -
自身を所有している Rake::Application のインスタンスを返します。
...自身を所有している Rake::Application のインスタンスを返します。... -
Rake
:: Task # application=(app) (12218.0) -
自身を所有している Rake::Application のインスタンスをセットします。
...自身を所有している Rake::Application のインスタンスをセットします。
@param app 自身を所有しているアプリケーションを指定します。... -
OpenURI
:: Meta # content _ type -> String (9217.0) -
対象となるリソースの Content-Type を文字列で返します。Content-Type ヘッダの情報が使われます。 Content-Type ヘッダがない場合は、"application/octet-stream" を返します。
...ースの Content-Type を文字列で返します。Content-Type ヘッダの情報が使われます。
Content-Type ヘッダがない場合は、"application/octet-stream" を返します。
//emlist[例][ruby]{
require 'open-uri'
open('http://www.ruby-lang.org/') {|f|
p f.content_type #=> "......スの Content-Type を文字列で返します。Content-Type ヘッダの情報が使われます。
Content-Type ヘッダがない場合は、"application/octet-stream" を返します。
//emlist[例][ruby]{
require 'open-uri'
URI.open('http://www.ruby-lang.org/') {|f|
p f.content_type #=>... -
Rake
:: Application # options -> OpenStruct (9207.0) -
コマンドラインで与えられたアプリケーションのオプションを返します。
...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=false, nosearch=false, rakelib=["rakelib"], show_all_tasks=false, show_prereqs=false, show_task_pattern=nil, s......how_tasks=nil, silent=false, suppress_backtrace_pattern=nil, thread_pool_size=8, trace=false, trace_output=#<IO:<STDERR>>, trace_rules=false>
end
//}... -
Rake
:: Application # init(app _ name = & # 39;rake& # 39;) (9119.0) -
コマンドラインオプションとアプリケーション名を初期化します。
...ンドラインオプションとアプリケーション名を初期化します。
//emlist[例][ruby]{
# Rakefile での記載例とする
task default: :test
task :test
Rake.application.name # => "rake"
Rake.application.init("MyApp") # => ["default"]
Rake.application.name # => "MyApp"
//}... -
Rake
:: Application # run (9119.0) -
Rake アプリケーションを実行します。
...下の 3 ステップを実行します。
* コマンドラインオプションを初期化します。Rake::Application#init
* タスクを定義します。Rake::Application#load_rakefile
* コマンドラインで指定されたタスクを実行します。Rake::Application#top_level... -
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
//}... -
Rake
:: TaskManager # in _ namespace(name) {|name _ space| . . . } -> Array (9107.0) -
与えられた名前の名前空間でブロックを評価します。
...ます。
@param name 名前を指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
namespace :sample do
def hoge
puts "hoge"
end
end
task :test_rake_app do
task.application.in_namespace("sample") do
hoge # => "hoge"
end
end
//}...