2084件ヒット
[101-200件を表示]
(0.116秒)
ライブラリ
クラス
-
Logger
:: Application (8) -
Net
:: HTTP (72) -
OpenSSL
:: ASN1 :: ASN1Data (36) -
OpenSSL
:: ASN1 :: BMPString (24) -
OpenSSL
:: ASN1 :: BitString (24) -
OpenSSL
:: ASN1 :: Boolean (24) -
OpenSSL
:: ASN1 :: Enumerated (24) -
OpenSSL
:: ASN1 :: GeneralString (24) -
OpenSSL
:: ASN1 :: GeneralizedTime (24) -
OpenSSL
:: ASN1 :: GraphicString (24) -
OpenSSL
:: ASN1 :: IA5String (24) -
OpenSSL
:: ASN1 :: ISO64String (24) -
OpenSSL
:: ASN1 :: Integer (24) -
OpenSSL
:: ASN1 :: Null (24) -
OpenSSL
:: ASN1 :: NumericString (24) -
OpenSSL
:: ASN1 :: ObjectId (24) -
OpenSSL
:: ASN1 :: OctetString (24) -
OpenSSL
:: ASN1 :: PrintableString (24) -
OpenSSL
:: ASN1 :: Sequence (24) -
OpenSSL
:: ASN1 :: Set (24) -
OpenSSL
:: ASN1 :: T61String (24) -
OpenSSL
:: ASN1 :: UTCTime (24) -
OpenSSL
:: ASN1 :: UTF8String (24) -
OpenSSL
:: ASN1 :: UniversalString (24) -
OpenSSL
:: ASN1 :: VideotexString (24) -
Rake
:: Application (144) -
Rake
:: FileTask (24) -
Rake
:: NameSpace (12) -
Rake
:: Task (24) - WIN32OLE (120)
-
WIN32OLE
_ EVENT (60) -
WIN32OLE
_ METHOD (12) -
WIN32OLE
_ PARAM (12) -
WIN32OLE
_ TYPE (36) -
WIN32OLE
_ VARIANT (12)
モジュール
-
CGI
:: HtmlExtension (48) -
Net
:: HTTPHeader (24) -
OpenSSL
:: ASN1 (540) -
OpenSSL
:: X509 (12) -
OpenURI
:: Meta (12) - Rake (24)
-
Rake
:: TaskManager (156) - URI (24)
-
WEBrick
:: HTTPUtils (24)
キーワード
- ASN1 (12)
- Application (13)
- BMPString (24)
- BitString (24)
- Boolean (24)
-
DEFAULT
_ RAKEFILES (12) - Enumerated (24)
- FormData (12)
- GeneralString (24)
- GeneralizedTime (24)
- GraphicString (24)
- IA5String (24)
- ISO64String (24)
- Integer (24)
-
NEWS for Ruby 2
. 2 . 0 (11) - Null (24)
- NumericString (24)
- ObjectId (24)
- OctetString (24)
- PrintableString (24)
- Sequence (24)
- Set (24)
- T61String (24)
- UTCTime (24)
- UTF8String (24)
- UniversalString (24)
-
V
_ ERR _ APPLICATION _ VERIFICATION (12) - VideotexString (24)
-
WIN32OLE
_ EVENT (12) -
WIN32OLE
_ VARIANT (12) - X509 (12)
- [] (12)
-
_ getproperty (12) -
_ invoke (12) -
_ setproperty (12) -
add
_ loader (12) - application= (24)
- appname (1)
-
cgi
/ session (12) - clear (12)
-
const
_ load (12) -
content
_ type (12) -
create
_ rule (12) -
current
_ scope (12) -
decode
_ www _ form (12) -
define
_ task (12) - each (12)
-
encode
_ www _ form (12) - form (48)
-
form
_ data= (12) - handler= (12)
-
in
_ namespace (12) - init (12)
- intern (12)
- invoke (12)
-
last
_ comment (12) -
last
_ description (12) -
last
_ description= (12) - level= (1)
-
load
_ mime _ types (12) -
load
_ rakefile (12) - log (2)
- log= (1)
- lookup (12)
-
mime
_ type (12) - name (24)
- needed? (12)
- new (601)
-
ole
_ query _ interface (12) -
ole
_ respond _ to? (12) -
on
_ event (12) -
on
_ event _ with _ outargs (12) -
original
_ dir (12) - post (24)
- post2 (24)
-
rake
/ classic _ namespace (12) - rakefile (12)
-
request
_ post (24) -
return
_ type _ detail (12) -
rubygems
/ commands / lock _ command (12) - run (12)
-
set
_ form _ data (12) -
set
_ log (1) - setproperty (24)
- start (1)
-
synthesize
_ file _ task (12) -
tag
_ class (12) -
tag
_ class= (12) - tasks (12)
-
to
_ s (12) -
top
_ level (12) -
top
_ level _ tasks (12) - traverse (12)
-
tty
_ output= (12)
検索結果
先頭5件
-
Rake
:: Application # rakefile -> String (12106.0) -
実際に使用されている Rakefile の名前を返します。
...実際に使用されている Rakefile の名前を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.rakefile # => "Rakefile"
end
//}... -
Logger
:: Application # appname -> String (12100.0) -
アプリケーション名を取得します。
アプリケーション名を取得します。 -
Rake
:: Application # load _ rakefile (12100.0) -
Rakefile を探してロードします。
...Rakefile を探してロードします。... -
Rake
:: Application :: DEFAULT _ RAKEFILES -> Array (12100.0) -
デフォルトで Rakefile として扱うファイル名の配列を返します。
...デフォルトで Rakefile として扱うファイル名の配列を返します。
'rakefile', 'Rakefile', 'rakefile.rb', 'Rakefile.rb' が指定されています。... -
Logger
:: Application (12024.0) -
ユーザ定義のアプリケーションにログ機能を簡単に追加することができます。
...インスタンス化して start メソッドを呼び出します。
例:
class FooApp < Application
def initialize(foo_app, application_specific, arguments)
super('FooApp') # Name of the application.
end
def run
...
log(WARN, 'warning', 'my_method1')
.........error('my_method2') { 'Error!' }
...
end
end
status = FooApp.new(....).start
=== 注意
このクラスは 2.2.0 で gem ライブラリとして切り離されました。2.2.0
以降ではそちらを利用してください。
* https://rubygems.org/gems/logger-application... -
rubygems
/ commands / lock _ command (12018.0) -
指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために 必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。
...存する Gem を使用するために
必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。
Usage: gem lock GEMNAME-VERSION [GEMNAME-VERSION ...] [options]
Options:
-s, --[no-]strict 依存関係を満たせない場合に失敗します......た設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMNAME ロックする Gem パッケージの名前......ails', '= 1.0.0'
gem 'rake', '= 0.7.0.1'
gem 'activesupport', '= 1.2.5'
gem 'activerecord', '= 1.13.2'
gem 'actionpack', '= 1.11.2'
gem 'actionmailer', '= 1.1.5'
gem 'actionwebservice', '= 1.0.0'
Just load lockdown.rb from your application... -
Rake
:: Application (12000.0) -
Rake で使用するメインのクラスです。
...Rake で使用するメインのクラスです。
コマンドラインで rake コマンドを実行した時に作成され、実行されます。... -
Rake
:: Application # name -> String (9106.0) -
アプリケーションの名前を返します。通常は 'rake' という名前を返します。
...アプリケーションの名前を返します。通常は 'rake' という名前を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.name # => "rake"
end
//}... -
Rake
:: Application # original _ dir -> String (9106.0) -
rake コマンドを実行したディレクトリを返します。
...rake コマンドを実行したディレクトリを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.original_dir # => "/path/to/dir"
end
//}... -
Rake
:: Application # top _ level _ tasks -> Array (9106.0) -
コマンドラインで指定されたタスクのリストを返します。
...コマンドラインで指定されたタスクのリストを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.top_level_tasks # => ["default"]
end
//}... -
Logger
:: Application # start -> () (9100.0) -
アプリケーションをスタートさせます。
...アプリケーションをスタートさせます。
@return run メソッドの返値を返します。
@raise RuntimeError サブクラスで run メソッドを定義していない場合に発生します。... -
OpenSSL
:: ASN1 . # GeneralString(value) -> OpenSSL :: ASN1 :: GeneralString -> OpenSSL :: ASN1 :: GeneralString (6406.0) -
ASN.1 の GeneralString 型の値を表現する Ruby のオブジェクトを 生成します。
...ASN.1 の GeneralString 型の値を表現する Ruby のオブジェクトを
生成します。
OpenSSL::ASN1::GeneralString.new と同じです。
@param value ASN.1 値を表す Ruby のオブジェクト(文字列)
@param tag タグ番号
@param tagging タグ付けの方法(:IMPLICIT もし......くは :EXPLICIT)
@param tag_class タグクラス(:UNIVERSAL, :CONTEXT_SPECIFIC, :APPLICATION, :PRIVATE のいずれか)...