670件ヒット
[1-100件を表示]
(0.129秒)
ライブラリ
- ビルトイン (82)
- bigdecimal (12)
-
fiddle
/ import (12) -
irb
/ cmd / load (12) -
irb
/ context (12) -
irb
/ ext / save-history (12) -
irb
/ ext / use-loader (48) - openssl (48)
- optparse (12)
- psych (12)
- rake (60)
-
rake
/ loaders / makefile (12) -
rake
/ testtask (24) - rubygems (108)
-
rubygems
/ commands / build _ command (12) -
rubygems
/ config _ file (12) -
rubygems
/ package / tar _ input (12) -
rubygems
/ remote _ fetcher (12) -
rubygems
/ source _ index (12) -
rubygems
/ spec _ fetcher (12) -
rubygems
/ specification (48) -
rubygems
/ version (12) -
webrick
/ httpauth / htdigest (24) -
webrick
/ httpauth / htgroup (12) -
webrick
/ httpauth / htpasswd (24) -
webrick
/ httpauth / userdb (12)
クラス
- BigDecimal (12)
-
Gem
:: Commands :: BuildCommand (12) -
Gem
:: ConfigFile (12) -
Gem
:: LoadError (36) -
Gem
:: Package :: TarInput (12) -
Gem
:: RemoteFetcher (12) -
Gem
:: SourceIndex (12) -
Gem
:: SpecFetcher (12) -
Gem
:: Specification (48) -
Gem
:: Version (12) -
IRB
:: Context (48) -
IRB
:: ExtendCommand :: Load (12) - LoadError (12)
- Module (24)
- Object (24)
-
OpenSSL
:: Config (12) -
OpenSSL
:: Engine (24) -
OpenSSL
:: X509 :: ExtensionFactory (12) - OptionParser (12)
-
Psych
:: SyntaxError (12) -
Rake
:: Application (48) -
Rake
:: DefaultLoader (12) -
Rake
:: MakefileLoader (12) -
Rake
:: TestTask (24) - Rational (12)
-
RubyVM
:: InstructionSequence (10) -
WEBrick
:: HTTPAuth :: Htdigest (24) -
WEBrick
:: HTTPAuth :: Htgroup (12) -
WEBrick
:: HTTPAuth :: Htpasswd (24)
モジュール
-
Fiddle
:: Importer (12) -
Gem
:: QuickLoader (60) -
IRB
:: ExtendCommandBundle (12) -
IRB
:: HistorySavingAbility (12) - Kernel (12)
-
WEBrick
:: HTTPAuth :: UserDB (12)
キーワード
-
_ dump (24) -
add
_ loader (12) - autoload (12)
- autoload? (12)
-
calculate
_ integers _ for _ gem _ version (12) - clone (12)
- config= (12)
-
const
_ missing (12) - dlload (12)
- download (12)
- each (12)
- execute (12)
- file (12)
- gem (12)
-
get
_ passwd (36) -
irb
_ load (12) - libs (12)
- libs= (12)
-
load
_ file (12) -
load
_ gems _ in (12) -
load
_ gemspec (12) -
load
_ gemspecs (12) -
load
_ history (12) -
load
_ modules (12) -
load
_ private _ key (12) -
load
_ public _ key (12) -
load
_ rakefile (12) -
load
_ specs (12) - loaded= (12)
- loaded? (12)
-
loaded
_ from (12) -
loaded
_ from= (12) -
marshal
_ dump (12) -
marshal
_ load (12) -
method
_ missing (12) - name (12)
- path (12)
-
push
_ all _ highest _ version _ gems _ on _ load _ path (12) -
push
_ gem _ version _ on _ load _ path (12) - reload (36)
- run (12)
-
to
_ binary (10) -
use
_ loader (12) -
use
_ loader= (12) -
use
_ loader? (12) -
version
_ requirement (12) -
version
_ requirement= (12)
検索結果
先頭5件
-
Rake
:: MakefileLoader # load(filename) (24208.0) -
与えられた Makefile をロードします。
...与えられた Makefile をロードします。
@param filename 読み込む Makefile の名前を指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
require "rake/loaders/makefile"
task default: :test_rake_app
open "sample.mf", "w" do |io|
io << <<-'SAMPLE_MF'
# Commen......b4 b5 b6\
# Mid: Comment
b7
a : a5 a6 a7
c: c1
d: d1 d2 \
e f : e1 f1
g\ 0: g1 g\ 2 g\ 3 g4
SAMPLE_MF
end
task :test_rake_app do |task|
loader = Rake::MakefileLoader.new
loader.load("sample.mf")
p Rake::Task.task_defined?("a") # => true
p Rake::Task.tasks[0] # => <Rake::FileTask a => [a... -
OptionParser
# load(filename = nil) -> bool (21314.0) -
指定された filename を読み込んで各行をまとめたものに対して OptionParser#parse を行ないます。
...指定された filename を読み込んで各行をまとめたものに対して OptionParser#parse を行ないます。
パースが成功した場合に true を返します。
ファイルが存在しなかった場合に false を返します。
@param filename 各行をパースしたい......れないか nil である場合、~/.options/ に
プログラムのサフィックスを付けた '~/.options/コマンド名' というファイルをパースします。
//emlist[例][ruby]{
require "optparse"
IO.write("options.txt", %w(-a --b).join("\n"))
options = { a: false......, b: false }
OptionParser.new do |opt|
opt.on('-a') { |v| options[:a] = v }
opt.on('--b') {|v| options[:b] = v }
opt.load("options.txt") # => true
opt.load("not_exist.txt") # => false
end
p options # => {:a=>true, :b=>true}
//}... -
Rake
:: DefaultLoader # load(filename) (21208.0) -
与えられたファイルをロードします。
...与えられたファイルをロードします。
@param filename ロードするファイル名を指定します。
//emlist[][ruby]{
require 'rake'
loader = Rake::DefaultLoader.new
loader.load("path/to/Rakefile") # => true
//}... -
IRB
:: ExtendCommandBundle # irb _ load(*opts , &b) -> nil (15224.0) -
現在の irb に関する IRB::Context に対して irb_load コマンドを実行 します。
...現在の irb に関する IRB::Context に対して irb_load コマンドを実行
します。
@see IRB::ExtendCommand::Load#execute... -
Gem
:: QuickLoader # push _ all _ highest _ version _ gems _ on _ load _ path (15202.0) -
prelude.c で定義されている内部用のメソッドです。
prelude.c で定義されている内部用のメソッドです。 -
Gem
:: QuickLoader # push _ gem _ version _ on _ load _ path (15202.0) -
prelude.c で定義されている内部用のメソッドです。
prelude.c で定義されている内部用のメソッドです。 -
Gem
:: SourceIndex # load _ gems _ in(*spec _ dirs) -> self (15202.0) -
引数で与えられたディレクトリに含まれる gemspec から自身を再構築して返します。
...引数で与えられたディレクトリに含まれる gemspec から自身を再構築して返します。
@param spec_dirs gemspec の含まれているディレクトリを複数指定します。... -
Gem
:: ConfigFile # load _ file(file _ name) -> object (12302.0) -
与えられたファイル名のファイルが存在すれば YAML ファイルとしてロードします。
...与えられたファイル名のファイルが存在すれば YAML ファイルとしてロードします。
@param file_name YAML 形式で記述された設定ファイル名を指定します。... -
IRB
:: HistorySavingAbility # load _ history -> () (12202.0) -
irb のヒストリを履歴ファイルから読み込みます。
...
irb のヒストリを履歴ファイルから読み込みます。
@see lib:irb#history...