559件ヒット
[101-200件を表示]
(0.057秒)
別のキーワード
ライブラリ
- ビルトイン (91)
- json (36)
- mkmf (24)
- openssl (36)
- pathname (12)
- pp (48)
- prime (24)
- rake (132)
- ripper (84)
-
ripper
/ filter (24) -
ripper
/ lexer (36) -
rubygems
/ requirement (12)
クラス
- Array (16)
-
Gem
:: Requirement (12) - Integer (12)
-
JSON
:: State (24) - Method (14)
- Module (12)
- Object (24)
-
OpenSSL
:: BN (24) - PP (24)
- Pathname (12)
- Prime (24)
-
Rake
:: Application (108) -
Rake
:: InvocationChain (12) - Ripper (84)
-
Ripper
:: Filter (24) -
Ripper
:: Lexer (36) -
RubyVM
:: InstructionSequence (12) - String (1)
モジュール
- Enumerable (36)
- Kernel (36)
-
Rake
:: TaskManager (12)
キーワード
- << (19)
- >> (7)
-
add
_ loader (12) - append (20)
-
append
_ as _ bytes (1) -
append
_ features (12) - chunk (12)
-
comma
_ breakable (12) -
compile
_ error (12) - each (24)
-
egrep
_ cpp (24) - encoding (12)
-
end
_ seen? (12) - entries (12)
- filename (24)
- init (12)
- jj (12)
- lex (12)
- name (12)
-
original
_ dir (12) - parse (36)
-
pretty
_ print (36) -
pretty
_ print _ cycle (12) - push (8)
- rakefile (12)
- seplist (12)
-
slice
_ before (24) - tasks (12)
-
to
_ a (12) -
to
_ bn (12) -
to
_ h (12) -
to
_ hash (12) - tokenize (12)
-
top
_ level (12) -
top
_ level _ tasks (12) -
tty
_ output= (12) - warn (12)
- warning (12)
検索結果
先頭5件
- Kernel
# egrep _ cpp(pattern , src , opt = "") { . . . } -> bool - Rake
:: InvocationChain # append(task _ name) -> Rake :: InvocationChain - Ripper
:: Lexer # lex -> [[Integer , Integer] , Symbol , String , Ripper :: Lexer :: State] - Ripper
:: Lexer # parse -> [[Integer , Integer] , Symbol , String , Ripper :: Lexer :: State] - Rake
:: Application # init(app _ name = & # 39;rake& # 39;)
-
Kernel
# egrep _ cpp(pattern , src , opt = "") { . . . } -> bool (6107.0) -
C プログラムのソースコード src をプリプロセスし、 その結果が正規表現 pattern にマッチするかどうかを判定します。
...スコード src をプリプロセスし、
その結果が正規表現 pattern にマッチするかどうかを判定します。
CPP $CFLAGS opt | egrep pat
を実行し、その結果が正常かどうかを true または false で返します。
このメソッドはヘッダファイル......の宣言があるかどうか
検査するために使用します。
@param pattern 「egrep の」正規表現を文字列で指定します。
Ruby の正規表現ではありません。
@param src C 言語のソースコードを文字列で記述します。
@see egrep(1)... -
Rake
:: InvocationChain # append(task _ name) -> Rake :: InvocationChain (6107.0) -
与えられたタスク名を追加して新しい Rake::InvocationChain を返します。
...した場合に発生します。
//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.append("task_b") # => LL("task_b", "task_a")
end
//}... -
Ripper
:: Lexer # lex -> [[Integer , Integer] , Symbol , String , Ripper :: Lexer :: State] (3117.0) -
自身の持つ Ruby プログラムをトークンに分割し、そのリストを返します。
...自身の持つ Ruby プログラムをトークンに分割し、そのリストを返します。
ライブラリ内部で使用します。 Ripper.lex を使用してください。... -
Ripper
:: Lexer # parse -> [[Integer , Integer] , Symbol , String , Ripper :: Lexer :: State] (3117.0) -
自身の持つ Ruby プログラムをトークンに分割し、そのリストを返します。た だし Ripper::Lexer#lex と違い、結果をソートしません。
...自身の持つ Ruby プログラムをトークンに分割し、そのリストを返します。た
だし Ripper::Lexer#lex と違い、結果をソートしません。
ライブラリ内部で使用します。... -
Rake
:: Application # init(app _ name = & # 39;rake& # 39;) (3107.0) -
コマンドラインオプションとアプリケーション名を初期化します。
...ンドラインオプションとアプリケーション名を初期化します。
//emlist[例][ruby]{
# Rakefile での記載例とする
task default: :test
task :test
Rake.application.name # => "rake"
Rake.application.init("MyApp") # => ["default"]
Rake.application.name # => "MyApp"
//}... -
Ripper
# encoding -> Encoding (3023.0) -
自身の持つ Ruby プログラムの文字エンコーディングを返します。
...自身の持つ Ruby プログラムの文字エンコーディングを返します。
Ruby プログラムの解析前は Encoding::US_ASCII を返します。... -
Ripper
# parse -> nil (3023.0) -
自身の持つ Ruby プログラムを解析します。常に nil を返します。
...自身の持つ Ruby プログラムを解析します。常に nil を返します。
サブクラスでオーバライドして使用します。Ruby プログラムの解析は行います
が、そのままでは解析結果は利用できません。サブクラスでイベントハンドラ......の定義や本メソッドの戻り値の追加などで対応する必要があります。
@see Ripper.parse... -
Ripper
# compile _ error(msg) -> nil (3017.0) -
解析した Ruby プログラムの中にコンパイルエラーがあった場合に実行されま す。
...解析した Ruby プログラムの中にコンパイルエラーがあった場合に実行されま
す。
@param msg エラーメッセージ。
サブクラスでオーバライドして使用します。... -
Ripper
# end _ seen? -> bool (3017.0) -
これまでに解析した Ruby プログラムの中に __END__ が含まれていたかどうか を返します。
...これまでに解析した Ruby プログラムの中に __END__ が含まれていたかどうか
を返します。... -
Ripper
# filename -> String (3017.0) -
自身の持つ Ruby プログラムのファイル名を文字列で返します。
...自身の持つ Ruby プログラムのファイル名を文字列で返します。...