370件ヒット
[1-100件を表示]
(0.043秒)
ライブラリ
- ビルトイン (70)
-
irb
/ context (12) -
irb
/ ext / use-loader (36) - openssl (24)
- optparse (12)
- rake (48)
- rubygems (84)
-
rubygems
/ config _ file (12) -
rubygems
/ package / tar _ input (12) -
rubygems
/ specification (48) -
rubygems
/ version (12)
クラス
-
Gem
:: ConfigFile (12) -
Gem
:: LoadError (24) -
Gem
:: Package :: TarInput (12) -
Gem
:: Specification (48) -
Gem
:: Version (12) -
IRB
:: Context (48) - Module (24)
- Object (24)
-
OpenSSL
:: Config (12) -
OpenSSL
:: X509 :: ExtensionFactory (12) - OptionParser (12)
-
Rake
:: Application (48) - Rational (12)
-
RubyVM
:: InstructionSequence (10)
モジュール
-
Gem
:: QuickLoader (48) - Kernel (12)
キーワード
-
add
_ loader (12) - autoload (12)
- autoload? (12)
-
calculate
_ integers _ for _ gem _ version (12) - clone (12)
- config= (12)
-
const
_ missing (12) - dup (12)
- each (12)
- gem (12)
-
load
_ file (12) -
load
_ gemspec (12) -
load
_ modules (12) -
load
_ rakefile (12) - loaded= (12)
- loaded? (12)
-
loaded
_ from (12) -
loaded
_ from= (12) -
marshal
_ dump (12) -
marshal
_ load (12) -
push
_ all _ highest _ version _ gems _ on _ load _ path (12) -
push
_ gem _ version _ on _ load _ path (12) - run (12)
-
to
_ binary (10) -
use
_ loader (12) -
use
_ loader= (12) -
use
_ loader? (12) -
version
_ requirement (12) -
version
_ requirement= (12)
検索結果
先頭5件
-
Gem
:: QuickLoader # push _ all _ highest _ version _ gems _ on _ load _ path (21303.0) -
prelude.c で定義されている内部用のメソッドです。
prelude.c で定義されている内部用のメソッドです。 -
Gem
:: QuickLoader # push _ gem _ version _ on _ load _ path (21303.0) -
prelude.c で定義されている内部用のメソッドです。
prelude.c で定義されている内部用のメソッドです。 -
OptionParser
# load(filename = nil) -> bool (21126.0) -
指定された filename を読み込んで各行をまとめたものに対して OptionParser#parse を行ないます。
...指定された filename を読み込んで各行をまとめたものに対して OptionParser#parse を行ないます。
パースが成功した場合に true を返します。
ファイルが存在しなかった場合に false を返します。
@param filename 各行をパースしたい......、~/.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}
//}... -
OpenSSL
:: X509 :: ExtensionFactory # config=(config) (9207.0) -
自身にコンフィグファイルオブジェクトを設定します。
...自身にコンフィグファイルオブジェクトを設定します。
例
require 'openssl'
factory.config = OpenSSL::Config.load(OpenSSL::Config::DEFAULT_CONFIG_FILE)
@param config 設定ファイル(OpenSSL::Config オブジェクト)... -
Rake
:: Application # add _ loader(ext , loader) (9207.0) -
与えられた拡張子で終わるファイル名のファイルをロードするためのローダーを 自身に追加します。
...@param loader ローダーを指定します。
//emlist[例][ruby]{
require "rake/loaders/makefile"
# Rakefile での記載例とする
task default: :test
task :test
makefile =<<-EOS
<< <<-'SAMPLE_MF'
# Comments
a: a1 a2 a3 a4
EOS
IO.write("sample.mf", makefile)
Rake.application.add_loader("mf......", Rake::MakefileLoader.new)
Rake.application.add_import("sample.mf")
Rake::Task.task_defined?("a") # => false
Rake.application.load_imports
Rake::Task.task_defined?("a") # => true
//}... -
Gem
:: LoadError # version _ requirement=(version _ requirement) (9201.0) -
ロードに失敗した Gem の必要条件をセットします。
...ロードに失敗した Gem の必要条件をセットします。
@param version_requirement Gem::Requirement のインスタンスをセットします。
@see Gem::Requirement, Gem::Dependency#version_requirements... -
IRB
:: Context # use _ loader -> bool (9133.0) -
load または require 時に irb のファイル読み込み機能(irb_load、 irb_require)を使うかどうかを返します。
...
load または require 時に irb のファイル読み込み機能(irb_load、
irb_require)を使うかどうかを返します。
@see IRB::Context#use_loader=... -
IRB
:: Context # use _ loader=(opt) (9133.0) -
load または require 時に irb のファイル読み込み機能(irb_load、 irb_require)を使うかどうかを設定します。
...
load または require 時に irb のファイル読み込み機能(irb_load、
irb_require)を使うかどうかを設定します。
.irbrc ファイル中で IRB.conf[:USE_LOADER] を設定する事でも同様の事が行
えます。
デフォルト値は false です。
@see IRB::Context#......use_loader?... -
IRB
:: Context # use _ loader? -> bool (9133.0) -
load または require 時に irb のファイル読み込み機能(irb_load、 irb_require)を使うかどうかを返します。
...
load または require 時に irb のファイル読み込み機能(irb_load、
irb_require)を使うかどうかを返します。
@see IRB::Context#use_loader=...