種類
- インスタンスメソッド (396)
- ライブラリ (48)
- クラス (36)
- 特異メソッド (36)
ライブラリ
-
net
/ http (12) - openssl (60)
- optparse (36)
- psych (24)
-
rake
/ packagetask (24) -
rexml
/ document (24) - rss (108)
-
rubygems
/ dependency _ installer (24) -
rubygems
/ platform (12) -
rubygems
/ specification (60) -
rubygems
/ version (36) - un (12)
-
webrick
/ httpresponse (12) - win32ole (12)
クラス
-
Gem
:: DependencyInstaller (24) -
Gem
:: Platform (12) -
Gem
:: Specification (60) -
Gem
:: Version (36) -
Net
:: HTTP (12) -
OpenSSL
:: SSL :: SSLContext (12) -
OpenSSL
:: X509 :: CRL (12) -
OpenSSL
:: X509 :: Certificate (12) -
OpenSSL
:: X509 :: Request (12) - OptionParser (24)
-
Psych
:: Nodes :: Document (24) -
REXML
:: XMLDecl (24) -
RSS
:: Maker :: RSSBase (12) -
RSS
:: RDF (48) -
RSS
:: Rss (48) -
Rake
:: PackageTask (24) -
WEBrick
:: Cookie (12) -
WEBrick
:: HTTPResponse (12)
モジュール
- Kernel (12)
キーワード
- OptionParser (12)
- Request (12)
-
WIN32OLE
_ TYPELIB (12) -
find
_ spec _ by _ name _ and _ version (12) - httpd (12)
- install (12)
-
marshal
_ load (12) - new (36)
- optparse (12)
-
rake
/ gempackagetask (12) -
request
_ http _ version= (12) -
required
_ ruby _ version= (12) -
required
_ rubygems _ version= (12) -
rss
_ version (24) -
rss
_ version= (24) - rubygems (12)
-
rubygems
/ specification (12) -
rubygems
_ version= (12) -
specification
_ version= (12) -
ssl
_ version= (24) -
to
_ s (12) - ver (12)
- version (36)
検索結果
先頭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
ここ...