98件ヒット
[1-98件を表示]
(0.140秒)
ライブラリ
- ビルトイン (14)
- rake (60)
-
rdoc
/ context (12) - uri (12)
クラス
-
RDoc
:: Context (12) -
Rake
:: Task (12) -
Rake
:: TaskArguments (12) -
RubyVM
:: AbstractSyntaxTree :: Node (14) -
URI
:: LDAP (12)
モジュール
-
Rake
:: TaskManager (36)
キーワード
- [] (12)
-
current
_ scope (12) -
find
_ enclosing _ module _ named (12) - inspect (7)
- lookup (12)
-
new
_ scope (12) - type (7)
検索結果
先頭5件
-
Rake
:: Task # scope (21102.0) -
-
URI
:: LDAP # scope -> String (18218.0) -
自身の Scope を文字列で返します。
...自身の Scope を文字列で返します。... -
Rake
:: TaskManager # current _ scope -> Array (12208.0) -
現在のスコープを返します。
...現在のスコープを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.current_scope # => LL()
end
//}... -
Rake
:: TaskArguments # new _ scope(names) -> Rake :: TaskArguments (9208.0) -
与えられたパラメータ名のリストを使用して新しい Rake::TaskArguments を作成します。
...使用して新しい Rake::TaskArguments を作成します。
@param names パラメータ名のリストを指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
arguments = Rake::TaskArguments.new(["name1", "name2"], ["va......lue1", "value2"])
new_arguments = arguments.new_scope(["name3", "name4"])
p new_arguments # => #<Rake::TaskArguments >
p new_arguments.names # => ["name3", "name4"]
end
//}... -
RubyVM
:: AbstractSyntaxTree :: Node # inspect -> String (9107.0) -
self のデバッグ用の情報を含んだ文字列を返します。
...self のデバッグ用の情報を含んだ文字列を返します。
//emlist[][ruby]{
node = RubyVM::AbstractSyntaxTree.parse('1 + 1')
puts node.inspect
# => #<RubyVM::AbstractSyntaxTree::Node:SCOPE@1:0-1:5>
//}... -
RubyVM
:: AbstractSyntaxTree :: Node # type -> Symbol (9107.0) -
self の種類を Symbol で返します。
...self の種類を Symbol で返します。
//emlist[][ruby]{
node = RubyVM::AbstractSyntaxTree.parse('1 + 1')
p node.type # => :SCOPE
//}... -
Rake
:: TaskManager # lookup(task _ name , initial _ scope = nil) -> Rake :: Task | nil (3308.0) -
与えられたタスク名にマッチするタスクを検索します。
...aram task_name タスク名を指定します。
@param initial_scope 検索するスコープを指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do |task|
task.application.lookup("test_rake_app") # => <Rake::Task test_ra... -
Rake
:: TaskManager # [](task _ name , scopes = nil) -> Rake :: Task (3301.0) -
与えられたタスク名にマッチするタスクを検索します。
...します。
@param task_name タスク名を指定します。
@param scopes スコープを指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application["test_rake_app"] # => <Rake::Task test_rake_app => []>
end... -
RDoc
:: Context # find _ enclosing _ module _ named(name) -> RDoc :: NormalModule | nil (3017.0) -
find a module at a higher scope
...find a module at a higher scope...