814件ヒット
[801-814件を表示]
(0.053秒)
ライブラリ
- ビルトイン (222)
- bigdecimal (24)
- csv (12)
- erb (24)
- logger (2)
-
minitest
/ unit (3) - mkmf (24)
- observer (12)
- optparse (24)
- pathname (12)
-
racc
/ parser (12) - rake (24)
-
rubygems
/ command _ manager (12) -
rubygems
/ doc _ manager (12) -
rubygems
/ ext / builder (12) -
rubygems
/ gem _ runner (12) -
rubygems
/ server (12) -
rubygems
/ specification (12) - scanf (6)
- shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6) - socket (72)
- stringio (12)
- thwait (18)
- un (108)
-
webrick
/ server (12) - win32ole (12)
クラス
- BigDecimal (24)
- CSV (12)
- ERB (24)
- File (24)
- Float (12)
-
Gem
:: CommandManager (12) -
Gem
:: DocManager (12) -
Gem
:: Ext :: Builder (12) -
Gem
:: GemRunner (12) -
Gem
:: Server (12) -
Gem
:: Specification (12) - Integer (12)
-
Logger
:: Application (1) -
MiniTest
:: Unit (2) -
MiniTest
:: Unit :: TestCase (1) - Mutex (2)
- Numeric (12)
- OptionParser (24)
- Pathname (12)
-
RDoc
:: Options (12) -
Racc
:: Parser (12) - Rational (12)
-
Scanf
:: FormatString (6) - Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) - Socket (36)
- StringIO (12)
- Thread (90)
-
Thread
:: Mutex (10) - ThreadGroup (12)
- ThreadsWait (18)
-
WEBrick
:: GenericServer (12) -
WIN32OLE
_ PARAM (12)
モジュール
- Kernel (180)
-
Socket
:: Constants (36)
キーワード
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) - Application (1)
-
MSG
_ CTRUNC (24) -
MSG
_ TRUNC (24) -
NEWS for Ruby 3
. 1 . 0 (4) - Observable (12)
-
SO
_ DONTTRUNC (24) - Thread (12)
- add (12)
-
add
_ runtime _ dependency (12) -
all
_ waits (12) -
backtrace
_ locations (24) - chmod (12)
- cp (12)
- desc (12)
-
dry
_ run= (12) - install (12)
- ln (12)
- mkdir (12)
- mv (12)
- namespace (12)
- new (30)
- prune (6)
-
racc
_ runtime _ type (12) - rake (12)
-
report
_ on _ exception (9) -
report
_ on _ exception= (9) - rm (12)
- rmdir (12)
-
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 3 feature (12) -
ruby 1
. 8 . 4 feature (12) -
run
_ rdoc (12) -
run
_ test _ suites (1) - sleep (36)
- start (1)
- status (12)
- stop (12)
-
test
/ unit (1) - touch (12)
- truncate (150)
-
try
_ run (24) - wakeup (12)
- スレッド (12)
検索結果
先頭2件
-
rake (12.0)
-
Rake というコマンドラインツールを扱うライブラリです。
...便利です。
* Rakefile をより簡単に作成するためにこのライブラリにはいくつかのタスクが同梱されています。
@see make(1)
=== Rake コマンドの使い方
$ rake --help
rake [-f rakefile] {options} targets...
Options are ...
-C, --classic-name......したタスクの詳細を表示して終了します。
パターンは省略可能です。
-n, --dry-run アクションを実行せずにタスクを実行します。
-e, --execute CODE Ruby のコードを実行して... -
ruby 1
. 8 . 3 feature (12.0) -
ruby 1.8.3 feature *((<ruby 1.8 feature>)) *((<ruby 1.8.2 feature>))
...y-talk:144741>))
class Fred
@@foo = 99
def foo
@@foo
end
end
def Fred.foo
@@foo = 101 #=> @@foo は Fred クラスのクラス変数ではない。
end
def Fred.foo_foo
class_variable_set(:@@foo, 101) # self が Fred ク......ラス自身であることに注意。クラス変数 @@foo に値をセットする。
end
Fred.foo # メソッドを呼んでも、Fred クラスのクラス変数 @@foo は変わらない。
p Fred.new.foo #=> 99
Fred.foo_foo #
p Fred.new.foo #....../defined?>)) [ruby][bug]
(({defined?(@a = b)}))のような NODE_IASGN が nil ではなく
"assignment" を返すようになりました。
((<"[yarv-dev:418]"|URL:http://www.atdot.net/mla/yarv-dev/418>))
=== 2005-02-17
: Test::Unit::AutoRunner.run [lib] [change]
第一引数の意味が...