110件ヒット
[1-100件を表示]
(0.141秒)
ライブラリ
- ビルトイン (14)
- rake (60)
-
rdoc
/ context (12) - uri (24)
クラス
-
RDoc
:: Context (12) -
Rake
:: Task (12) -
Rake
:: TaskArguments (12) -
RubyVM
:: AbstractSyntaxTree :: Node (14) -
URI
:: LDAP (24)
モジュール
-
Rake
:: TaskManager (36)
キーワード
- [] (12)
-
current
_ scope (12) -
find
_ enclosing _ module _ named (12) - inspect (7)
- lookup (12)
-
new
_ scope (12) - scope= (12)
- type (7)
検索結果
先頭5件
-
URI
:: LDAP # scope -> String (21218.0) -
自身の Scope を文字列で返します。
...自身の Scope を文字列で返します。... -
Rake
:: Task # scope (21102.0) -
-
Rake
:: TaskManager # current _ scope -> Array (12308.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"]......, ["value1", "value2"])
new_arguments = arguments.new_scope(["name3", "name4"])
p new_arguments # => #<Rake::TaskArguments >
p new_arguments.names # => ["name3", "name4"]
end
//}... -
URI
:: LDAP # scope=(s) (9124.0) -
自身の Scope を文字列で設定します。
...自身の Scope を文字列で設定します。
@param s 自身の Scope を文字列で設定します。... -
Rake
:: TaskManager # lookup(task _ name , initial _ scope = nil) -> Rake :: Task | nil (3208.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 (3201.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 (3117.0) -
find a module at a higher scope
...find a module at a higher scope... -
RubyVM
:: AbstractSyntaxTree :: Node # inspect -> String (3107.0) -
self のデバッグ用の情報を含んだ文字列を返します。
...self のデバッグ用の情報を含んだ文字列を返します。
//emlist[][ruby]{
node = RubyVM::AbstractSyntaxTree.parse('1 + 1')
puts node.inspect
# => #<RubyVM::AbstractSyntaxTree::Node:SCOPE@1:0-1:5>
//}...