504件ヒット
[1-100件を表示]
(0.024秒)
別のキーワード
クラス
-
Rake
:: FileCreationTask (12) -
Rake
:: FileList (144) -
Rake
:: FileTask (12) -
Rake
:: InvocationChain (24) -
Rake
:: InvocationChain :: EmptyInvocationChain (12) -
Rake
:: MakefileLoader (12) -
Rake
:: PackageTask (72) -
Rake
:: RDocTask (12) -
Rake
:: Task (12) -
Rake
:: TaskArguments (24) -
Rake
:: TestTask (96) - String (12)
モジュール
- FileUtils (24)
-
Rake
:: Cloneable (24) - RakeFileUtils (12)
キーワード
- == (12)
- [] (12)
- append (12)
- clone (12)
- dup (12)
- exclude (12)
-
excluded
_ from _ list? (12) - external (12)
- gsub (12)
- gsub! (12)
-
is
_ a? (12) -
kind
_ of? (12) - libs (12)
- libs= (12)
- load (12)
- loader (12)
- lookup (12)
- member? (24)
-
need
_ tar (12) -
need
_ tar _ bz2 (12) -
need
_ tar _ bz2= (12) -
need
_ tar _ gz (12) -
need
_ zip (12) - needed? (24)
- pathmap (12)
- reenable (12)
- ruby (12)
-
ruby
_ opts (12) -
ruby
_ opts= (12) -
split
_ all (12) - sub (12)
- sub! (12)
-
tar
_ bz2 _ file (12) -
to
_ a (12) -
to
_ ary (12) -
to
_ s (12) - verbose (24)
- verbose= (12)
- warning (12)
検索結果
先頭5件
-
Rake
:: TestTask # libs=(libs) (6202.0) -
テスト実行前に $LOAD_PATH に追加するパスをセットします。
...テスト実行前に $LOAD_PATH に追加するパスをセットします。
@param libs $LOAD_PATH に追加するパスを配列で指定します。... -
Rake
:: TestTask # verbose -> bool (6202.0) -
この値が真である場合、テストの実行結果を詳細に表示します。
この値が真である場合、テストの実行結果を詳細に表示します。 -
Rake
:: FileList # sub!(pattern , replace) -> self (6121.0) -
自身に含まれるファイルリストのそれぞれのエントリに対して String#sub を実行します。 自身を破壊的に変更します。
...に対して String#sub を実行します。
自身を破壊的に変更します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
file_list = FileList['a.c', 'b.c']
file_list.sub!(/\.c$/, '.o') # => ['a.o', 'b.o']
file_list......# => ['a.o', 'b.o']
end
//}... -
Rake
:: FileList # sub(pattern , replace) -> Rake :: FileList (6115.0) -
自身に含まれるファイルリストのそれぞれのエントリに対して String#sub を実行し、 結果を新しい Rake::FileList として返します。
...自身に含まれるファイルリストのそれぞれのエントリに対して String#sub を実行し、
結果を新しい Rake::FileList として返します。
例:
FileList['a.c', 'b.c'].sub(/\.c$/, '.o') => ['a.o', 'b.o']... -
Rake
:: InvocationChain # member?(task _ name) -> bool (6109.0) -
与えられたタスク名が自身に含まれる場合は真を返します。 そうでない場合は偽を返します。
...。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
invocation_chain = Rake::InvocationChain.new("task_a", Rake::InvocationChain::EMPTY)
invocation_chain.member?("task_a") # => true
invocation_chain.member?("task_b") # => false
end
//... -
FileUtils
# ruby(*args) {|result , status| . . . } (6103.0) -
与えられた引数で Ruby インタプリタを実行します。
...与えられた引数で Ruby インタプリタを実行します。
@param args Ruby インタプリタに与える引数を指定します。
例:
ruby %{-pe '$_.upcase!' <README}
@see Kernel.#sh... -
Rake
:: FileList # gsub!(pattern , replace) -> self (6103.0) -
自身に含まれるファイルリストのそれぞれのエントリに対して String#gsub を実行します。 自身を破壊的に変更します。
...g#gsub を実行します。
自身を破壊的に変更します。
//emlist[][ruby]{
# Rakefile での記載例とする
IO.write("test1.rb", "test")
IO.write("test2.rb", "test")
task default: :test_rake_app
task :test_rake_app do
file_list = FileList.new("test1.rb", "test2.rb", "test3.rb")......file_list.gsub!(/\.rb/, ".erb") # => ["test1.erb", "test2.erb", "test3.erb"]
file_list # => ["test1.erb", "test2.erb", "test3.erb"]
end
//}... -
Rake
:: FileList # gsub(pattern , replace) -> Rake :: FileList (6103.0) -
自身に含まれるファイルリストのそれぞれのエントリに対して String#gsub を実行し、 結果を新しい Rake::FileList として返します。
...自身に含まれるファイルリストのそれぞれのエントリに対して String#gsub を実行し、
結果を新しい Rake::FileList として返します。
例:
FileList['lib/test/file', 'x/y'].gsub(/\//, "\\") # => ['lib\\test\\file', 'x\\y']... -
Rake
:: InvocationChain :: EmptyInvocationChain # member?(task _ name) -> bool (6103.0) -
偽を返します。
偽を返します。