72件ヒット
[1-72件を表示]
(0.046秒)
種類
- インスタンスメソッド (60)
- ライブラリ (12)
ライブラリ
- rake (12)
-
rake
/ gempackagetask (12) -
rubygems
/ format (12) -
rubygems
/ old _ format (12) -
rubygems
/ require _ paths _ builder (12)
クラス
-
Gem
:: Format (12) -
Gem
:: OldFormat (12) -
Rake
:: FileList (12) -
Rake
:: GemPackageTask (12)
モジュール
キーワード
-
gem
_ spec= (12) - pathmap (12)
- rubygems (12)
-
write
_ require _ paths _ file _ if _ needed (12)
検索結果
先頭5件
-
Gem
:: Format # spec=(spec) (18106.0) -
Gem の Gem::Specification をセットします。
...Gem の Gem::Specification をセットします。
@param spec Gem の Gem::Specification をセットします。... -
Gem
:: OldFormat # spec=(spec) (18106.0) -
Gem の Gem::Specification をセットします。
...Gem の Gem::Specification をセットします。
@param spec Gem の Gem::Specification をセットします。... -
Rake
:: GemPackageTask # gem _ spec=(gem _ spec) (6106.0) -
gemspec をセットします。
...gemspec をセットします。
@param gem_spec Gem::Specification のインスタンスを指定します。... -
Gem
:: RequirePathsBuilder # write _ require _ paths _ file _ if _ needed(spec = @spec , gem _ home = @gem _ home) (103.0) -
必要であれば、'.require_paths' というファイルを Gem ごとに作成します。
必要であれば、'.require_paths' というファイルを Gem ごとに作成します。 -
rubygems (42.0)
-
RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。
...oxy サーバ経由で Gem パッケージをインストールするには以下のようにします。
$ gem install rak -p http://user:password@proxy.example.com/
==== Gem パッケージをアンインストールする
例えば rak をアンインストールするには、以下のい......ry = 'hello summary'
s.files = ['lib/hello.rb']
s.authors = ['Hello Author']
s.email = 'hello_author@example.com'
s.homepage = 'http://example.com/hello/'
s.description = 'hello description'
end
//}
: name
この Gem の名前......packagetask'
PKG_FILES = FileList[
'lib/hello.rb',
'spec/*'
]
spec = Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.1'
s.author = 'Hello Author'
s.email = 'hello@example.com'
s.homepage = 'http://example.com/hello'
s... -
Rake
:: FileList # pathmap(spec = nil) -> Rake :: FileList (7.0) -
各要素に String#pathmap を適用した新しい Rake::FileList を返します。
...い Rake::FileList を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
file_list = FileList.new("test1.rb", "test2.rb", "test3.rb")
file_list.pathmap("%n") # => ["test1", "test2", "test3"]
end
//}
@see String#pathmap...