60件ヒット
[1-60件を表示]
(0.050秒)
別のキーワード
種類
- インスタンスメソッド (36)
- 特異メソッド (12)
- ライブラリ (12)
ライブラリ
クラス
-
Gem
:: Specification (36)
モジュール
キーワード
-
attribute
_ alias _ singular (12) -
require
_ paths (12) - rubygems (12)
-
write
_ require _ paths _ file _ if _ needed (12)
検索結果
先頭5件
-
Gem
:: Specification # require _ path -> String (18201.0) -
Gem::Specification#require_paths の単数バージョンです。
...Gem::Specification#require_paths の単数バージョンです。
@see Gem::Specification#require_paths... -
Gem
:: RequirePathsBuilder # write _ require _ paths _ file _ if _ needed(spec = @spec , gem _ home = @gem _ home) (12200.0) -
必要であれば、'.require_paths' というファイルを Gem ごとに作成します。
...必要であれば、'.require_paths' というファイルを Gem ごとに作成します。... -
Gem
:: Specification # require _ paths -> [String] (6200.0) -
この Gem パッケージを使用した際に require するファイルが置かれているディレクトリ のリストを返します。
この Gem パッケージを使用した際に require するファイルが置かれているディレクトリ
のリストを返します。 -
Gem
:: Specification . attribute _ alias _ singular(singular , plural) -> () (6112.0) -
既に存在する複数形の属性の単数形バージョンを定義します。
...うことです。
例:
# このように定義すると
attribute_alias_singular :require_path, :require_paths
# こう書くかわりに
s.require_paths = ['mylib']
# こう書くことができます。
s.require_path = 'mylib'
@param singular 属性名の単数形を指定しま... -
rubygems (12.0)
-
RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。
...= ['Hello Author']
s.email = 'hello_author@example.com'
s.homepage = 'http://example.com/hello/'
s.description = 'hello description'
end
//}
: name
この Gem の名前を指定します。
: version
この Gem のバージョンを指定します。
: sum......email
この Gem の作者の連絡先メールアドレスを指定します。
: homepage
この Gem のウェブサイトの URI を指定します。
: description
この Gem の長い説明を指定します。
実行可能なファイル (コマンド) を含む場合の gemspec は以......tp://example.com/hello'
s.platform = Gem::Platform::RUBY
s.summary = 'Hello Gem'
s.files = PKG_FILES.to_a
s.require_path = 'lib'
s.has_rdoc = false
s.extra_rdoc_files = ['README']
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.gem_spec = spec
e...
