65件ヒット
[1-65件を表示]
(0.057秒)
種類
- インスタンスメソッド (48)
- ライブラリ (12)
- 文書 (5)
ライブラリ
クラス
キーワード
-
NEWS for Ruby 3
. 0 . 0 (5) -
add
_ gem _ contents (12) -
add
_ signatures (12) -
rubygems
/ security (12)
検索結果
先頭5件
-
Gem
:: Package :: TarInput # metadata -> Gem :: Specification (21201.0) -
メタデータを返します。
メタデータを返します。 -
Gem
:: Package :: TarOutput # add _ metadata (9117.0) -
gem-format な tar ファイルに metadata.gz を追加します。
...gem-format な tar ファイルに metadata.gz を追加します。
前回の Gem::Package::TarOutput#add_gem_contents の呼び出し以降に
変更したメタデータを書き込みます。... -
Gem
:: Package :: TarOutput # add _ signatures (3016.0) -
gem-format な tar ファイルに data.tar.gz.sig, metadata.gz.sig を追加します。
...gem-format な tar ファイルに data.tar.gz.sig, metadata.gz.sig を追加します。
@see Gem::Security::Signer... -
Gem
:: Package :: TarOutput # add _ gem _ contents {|data _ tar _ writer| . . . } -> self (3012.0) -
gem-format な tar ファイル内の data.tar.gz にファイルを追加するためのメ ソッドです。
...ソッドです。
ブロックには data.tar.gz に紐付いた Gem::Package::TarWriter のイ
ンスタンスが渡されます。このブロックパラメータには
Gem::Specification を追加するための metadata, metadata= という特
異メソッドが追加されています。... -
NEWS for Ruby 3
. 0 . 0 (54.0) -
NEWS for Ruby 3.0.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。
...separated from positional arguments.
Code that resulted in deprecation warnings in Ruby 2.7 will now
result in ArgumentError or different behavior. 14183
* Procs accepting a single rest argument and keywords are no longer
subject to autosplatting. This now matches the behavior of Pro......cepting a single rest argument and no keywords.
16166
//emlist[][ruby]{
pr = proc{|*a, **kw| [a, kw]}
pr.call([1])
# 2.7 => [[1], {}]
# 3.0 => [[[1]], {}]
pr.call([1, {a: 1}])
# 2.7 => [[1], {:a=>1}] # and deprecation warning
# 3.0 => a=>1}, {}]
//}
* Arguments forwarding (`...`) now suppo......users might experience slow compilations.
* Memory view interface [EXPERIMENTAL]
* The memory view interface is a C-API set to exchange a raw memory area, such as a numeric array or a bitmap image, between extension libraries. The extension libraries can share also the metadata of the memory... -
rubygems
/ security (42.0) -
このライブラリは暗号署名を RubyGems パッケージに使用するために使用します。
...るために使用します。
=== 署名付きの Gem パッケージ
==== 目次
* 概要
* 解説
* コマンドラインオプション
* OpenSSL リファレンス
* Bugs / TODO
* 作者について
==== 概要
このライブラリは暗号署名を RubyGems パッケージに使用......のコマンドを実行するとそれらを作成することができます。
# gemmaster@example.com のための秘密鍵と証明書を作成します
$ gem cert --build gemmaster@example.com
あなたのコンピュータの性能にもよりますが、これには 5 秒から 10 分......tar.gz
data.tar.gz.sig
metadata.gz
metadata.gz.sig
さあ、署名を検証してみましょう。以下のように "-P HighSecurity" オプションを
付けて Gem をインストールしてみてください。
# install the gem with using the security policy "HighSecurity"
$...