ライブラリ
- rake (888)
-
rake
/ loaders / makefile (12) -
rake
/ packagetask (192) -
rubygems
/ installer (12)
クラス
-
Gem
:: Installer (12) -
Rake
:: Application (144) -
Rake
:: DefaultLoader (12) -
Rake
:: FileList (204) -
Rake
:: FileTask (24) -
Rake
:: InvocationChain (60) -
Rake
:: MakefileLoader (12) -
Rake
:: NameSpace (36) -
Rake
:: PackageTask (192) -
Rake
:: TaskArguments (72)
モジュール
- Kernel (12)
- Rake (36)
-
Rake
:: Cloneable (24) -
Rake
:: TaskManager (156) - RakeFileUtils (84)
キーワード
- == (12)
-
DEFAULT
_ RAKEFILES (12) - RakeFileUtils (12)
- Ruby用語集 (12)
- Task (12)
- [] (36)
-
add
_ loader (12) - append (24)
- application (12)
- application= (12)
-
build
_ extensions (12) - clear (12)
-
clear
_ exclude (12) - clone (12)
-
create
_ rule (12) -
current
_ scope (12) -
define
_ task (12) - dup (12)
- egrep (12)
-
excluded
_ from _ list? (12) - existing (12)
- existing! (12)
- ext (12)
- gsub! (12)
- import (24)
-
in
_ namespace (12) - init (12)
- intern (12)
-
is
_ a? (12) -
kind
_ of? (12) -
last
_ comment (12) -
last
_ description (12) -
last
_ description= (12) - load (24)
-
load
_ rakefile (12) - lookup (12)
- member? (12)
- name (24)
- name= (12)
- names (12)
-
need
_ tar (12) -
need
_ tar= (12) -
need
_ tar _ bz2 (12) -
need
_ tar _ bz2= (12) -
need
_ tar _ gz (12) -
need
_ tar _ gz= (12) -
need
_ zip (12) -
need
_ zip= (12) - needed? (12)
- new (48)
-
new
_ scope (12) - nowrite (12)
-
nowrite
_ flag (12) -
nowrite
_ flag= (12) -
original
_ dir (24) -
package
_ dir (12) -
package
_ dir= (12) -
package
_ dir _ path (12) -
package
_ files (12) -
package
_ files= (12) - pathmap (12)
- rake (12)
-
rake
/ classic _ namespace (12) - resolve (12)
- rubygems (12)
-
rubygems
/ specification (12) - run (12)
- sub! (12)
-
synthesize
_ file _ task (12) - tasks (24)
-
to
_ a (12) -
to
_ ary (12) -
to
_ hash (12) -
to
_ s (24) -
top
_ level (12) -
top
_ level _ tasks (12) -
tty
_ output= (12) - verbose (12)
-
verbose
_ flag (12) -
verbose
_ flag= (12) -
when
_ writing (12) -
with
_ defaults (12)
検索結果
先頭5件
-
Rake
:: TaskManager # last _ description=(description) (6.0) -
最新の詳細説明をセットします。
...最新の詳細説明をセットします。
//emlist[][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_des... -
Rake
:: TaskManager # lookup(task _ name , initial _ scope = nil) -> Rake :: Task | nil (6.0) -
与えられたタスク名にマッチするタスクを検索します。
...。
@param 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... -
Rake
:: TaskManager # synthesize _ file _ task(task _ name) -> Rake :: FileTask | nil (6.0) -
与えられたタスク名をもとにファイルタスクを合成します。
...ない場合は nil を返します。
@raise RuntimeError タスクを合成できなかった場合に発生します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do |task|
task.application.synthesize_file_task("sample_file") # =>... -
Rake
:: TaskManager # tasks -> Array (6.0) -
全てのタスクリストを返します。
...全てのタスクリストを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
require 'pp'
task default: :test_rake_app2
task :test_rake_app1 do |task|
end
task :test_rake_app2 do |task|
pp task.application.tasks
# => [<Rake::Task default => [test_rake_app2]>,
# <... -
rubygems (6.0)
-
RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。
...iption = 'hello description'
end
//}
ライブラリの例に加えて executables を追加しています。
また、以下のように Rakefile にタスクを追加することもできます。
//emlist[gemspec][ruby]{
require 'rake/gempackagetask'
PKG_FILES = FileList[
'lib/hello.... -
rubygems
/ specification (6.0) -
Gem パッケージのメタデータを扱うためのライブラリです。
...Gem パッケージのメタデータを扱うためのライブラリです。
通常 gemspec ファイルや Rakefile でメタデータを定義します。
例:
spec = Gem::Specification.new do |s|
s.name = 'rfoo'
s.version = '1.0'
s.summary = 'Example gem specification'...