497件ヒット
[1-100件を表示]
(0.041秒)
ライブラリ
- ビルトイン (301)
- date (4)
-
rdoc
/ markup (12) -
rubygems
/ commands / build _ command (12) -
rubygems
/ commands / lock _ command (12) -
rubygems
/ dependency _ installer (12) -
rubygems
/ dependency _ list (24) -
rubygems
/ source _ index (36) -
rubygems
/ specification (84)
クラス
- BasicObject (24)
- Data (9)
- Date (2)
- DateTime (2)
-
Gem
:: Commands :: BuildCommand (12) -
Gem
:: Commands :: LockCommand (12) -
Gem
:: DependencyInstaller (12) -
Gem
:: DependencyList (24) -
Gem
:: SourceIndex (36) -
Gem
:: Specification (84) - MatchData (2)
- Module (192)
- Object (24)
-
RDoc
:: Markup (12) - Struct (48)
- Time (2)
キーワード
-
add
_ special (12) - deconstruct (6)
-
deconstruct
_ keys (17) -
deprecate
_ constant (12) -
file
_ name (12) -
find
_ name (24) -
find
_ spec _ by _ name _ and _ version (12) -
full
_ name (12) - inspect (27)
-
instance
_ eval (12) -
load
_ gemspecs (12) - name= (12)
-
original
_ name (12) - private (48)
- protected (48)
- public (48)
-
remove
_ by _ name (12) -
remove
_ spec (12) - send (24)
-
singleton
_ method _ undefined (12) -
spec
_ path (12) - specification (12)
-
to
_ a (6) -
to
_ s (27) - values (6)
検索結果
先頭5件
-
Gem
:: Specification # name -> String (21102.0) -
この Gem パッケージの名前を返します。
この Gem パッケージの名前を返します。 -
Module
# name -> String | nil (18144.0) -
モジュールやクラスの名前を文字列で返します。
...ル / クラスに対しては、name は nil を、それ以外はオブジェクト ID の文字列を返します。
//emlist[例][ruby]{
module A
module B
end
p B.name #=> "A::B"
class C
end
end
p A.name #=> "A"
p A::B.name #=> "A::B"
p A::C.name #=> "A::C"
# 名前のない......モジュール / クラス
p Module.new.name #=> nil
p Class.new.name #=> nil
p Module.new.to_s #=> "#<Module:0x00007f90b09112c8>"
p Class.new.to_s #=> "#<Class:0x00007fa5c40b41b0>"
//}... -
Gem
:: DependencyInstaller # find _ spec _ by _ name _ and _ version(gem _ name , version = Gem :: Requirement . default) -> Array (12310.0) -
与えられた Gem の名前とバージョンに関する条件にマッチする Gem::Specification と それの存在する URI を含む配列を返します。
...与えられた Gem の名前とバージョンに関する条件にマッチする Gem::Specification と
それの存在する URI を含む配列を返します。
@param gem_name Gem の名前を指定します。
@param version Gem が満たすバージョンに関する条件を指定しま... -
Gem
:: Specification # name=(name) (9209.0) -
この Gem パッケージの名前をセットします。
...この Gem パッケージの名前をセットします。
@param name この Gem パッケージの名前を指定します。... -
Gem
:: Specification # full _ name -> String (9124.0) -
この Gem パッケージのバージョンを含む完全な名前 (name-version) を返します。
...この Gem パッケージのバージョンを含む完全な名前 (name-version) を返します。
プラットフォームの情報が指定されている場合は、それも含みます (name-version-platform)。... -
Gem
:: Specification # original _ name -> String (9108.0) -
このメソッドは後方互換性のために残されています。
...このメソッドは後方互換性のために残されています。
@see Gem::Specification#full_name... -
Gem
:: Specification # file _ name -> String (9102.0) -
生成される Gem パッケージの名前を返します。
生成される Gem パッケージの名前を返します。 -
Gem
:: DependencyList # find _ name(full _ name) -> Gem :: Specification | nil (6315.0) -
自身に含まれる与えられた名前を持つ Gem::Specification のインスタンスを返します。
...身に含まれる与えられた名前を持つ Gem::Specification のインスタンスを返します。
見つからなかった場合は nil を返します。
@param full_name バージョンを含むフルネームで Gem の名前を指定します。
@see Gem::Specification#full_name... -
Gem
:: DependencyList # remove _ by _ name(full _ name) -> Gem :: Specification (6315.0) -
与えられた名前を持つ Gem::Specification を自身から削除します。
...名前を持つ Gem::Specification を自身から削除します。
このメソッドでは削除後の依存関係をチェックしません。
@param full_name バージョンを含むフルネームで Gem の名前を指定します。
@see Gem::Specification#full_name, Array#delete_if...