るりまサーチ

最速Rubyリファレンスマニュアル検索!
516件ヒット [201-300件を表示] (0.031秒)
トップページ > クエリ:version=[x]

別のキーワード

  1. openssl version
  2. rss version=
  3. rss version
  4. rss rss_version
  5. zlib zlib_version

検索結果

<< < 1 2 3 4 5 ... > >>

Gem::Specification#specification_version=(version) (6100.0)

この Gem パッケージに用いられている gemspec のバージョンをセットします。

この Gem パッケージに用いられている gemspec のバージョンをセットします。

@param version gemspec のバージョンを指定します。

@see Gem::Specification::SPECIFICATION_VERSION_HISTORY

Net::HTTP#ssl_version=(ver) (6100.0)

利用するプロトコルの種類を指定します。

...利用するプロトコルの種類を指定します。

OpenSSL::SSL::SSLContext.new で指定できるものと同じです。

@param ver 利用するプロトコルの種類(文字列 or シンボル)
@see Net::HTTP#ssl_version, OpenSSL::SSL::SSLContext#ssl_version=...

OpenSSL::SSL::SSLContext#ssl_version=(ver) (6100.0)

利用するプロトコルの種類を文字列もしくは シンボルで指定します。

利用するプロトコルの種類を文字列もしくは
シンボルで指定します。

OpenSSL::SSL::SSLContext.new で指定できるものと同じです。

@param ver 利用するプロトコルの種類

WEBrick::HTTPResponse#request_http_version=(ver) (6100.0)

リクエストの HTTP バージョンをセットします。

リクエストの HTTP バージョンをセットします。

@param ver リクエストの HTTP バージョンを WEBrick::HTTPVersion オブジェクトで指定します。

RSS::RDF#rss_version= (3101.0)

@todo

@todo

絞り込み条件を変える

RSS::Rss#rss_version= (3101.0)

@todo

@todo

Psych::Nodes::Document.new(version=[], tag_directives=[], implicit=false) -> Psych::Nodes::Document (100.0)

Document オブジェクトを生成します。

Document オブジェクトを生成します。

version にはドキュメントのバージョンを指定します。
[major, minor] という配列で指定します。

tag_directives には tag directive の配列を指定します。
それぞれの tag は [prefix, suffix] という文字列の配列で
表現します。

implicit にはドキュメントが implicit に始まっているかどうかを
真偽値で指定します。

@param version YAML ドキュメントのバージョン
@param tag_directives tag directive の配列...

rubygems (24.0)

RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。

...です。また、いくつかの警告が表示されます。

//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
end
//}

実用的なライブラリを作成するための gemspec の例を示します。
警告メッ...
...にいくつか設定を追加しています。

//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
s.files = ['lib/hello.rb']
s.authors = ['Hello Author']
s.email...
...の gemspec は以下のようになります。

//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
s.files = ['bin/hello', 'lib/hello.rb']
s.executables = ['hello']
s...

WIN32OLE_TYPELIB (12.0)

OLEオートメーションサーバの型情報ライブラリ(TypeLib)を操作するための クラスです。

...require 'win32ole'

tlib = WIN32OLE_TYPELIB.new('Microsoft Excel 14.0 Object Library')
puts "Guid of Excel typelib = #{tlib.guid}"
puts "version = #{tlib.major_version}.#{tlib.minor_version}"
puts "creatable classes:"
tlib.ole_types.select{|cls| cls.progid }.each do |cls|
puts "...
...ID=#{cls.progid}"
end

上記を実行すると以下の出力を得ます。

Guid of Excel typelib = {00020813-0000-0000-C000-000000000046}
version =
1.7
creatable classes:
Application: PROGID=Excel.Application.14
Chart: PROGID=Excel.Chart.8
Worksheet: PROGID=Excel.Sheet.8

ここ...
<< < 1 2 3 4 5 ... > >>