るりまサーチ

最速Rubyリファレンスマニュアル検索!
100件ヒット [1-100件を表示] (0.104秒)
トップページ > クエリ:t[x] > クエリ:copyright[x]

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

検索結果

RSS::Maker::ChannelBase#copyright (24202.0)

@todo

...@todo...

RSS::Rss::Channel#copyright (24202.0)

@todo

...@todo...

RSS::Maker::ChannelBase#copyright=() (12202.0)

@todo

...@todo...

RSS::Rss::Channel#copyright= (12202.0)

@todo

...@todo...

Object::RUBY_COPYRIGHT -> String (12201.0)

Ruby のコピーライトを表す文字列。

Ruby のコピーライトを表す文字列。

絞り込み条件を変える

rdoc/generator/json_index (6018.0)

他のジェネレータが生成する HTML で検索が行えるように、JSON の検索インデッ クスを生成するサブライブラリです。

...ータが生成する HTML で検索が行えるように、JSON の検索インデッ
クスを生成するサブライブラリです。

T
his generator is derived from sdoc by Vladimir Kolesnikov and
contains verbatim code written by him.

このジェネレータは HTML ジェネレータと一...
...ています。:

class RDoc::Generator::Darkfish
def initialize options
# ...
@base_dir = Pathname.pwd.expand_path

@json_index = RDoc::Generator::JsonIndex.new self, options
end

def generate
# ...
@json_index.generate
end
end

=== インデック...
...ンス

Copyright
(c) 2009 Vladimir Kolesnikov

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, co...

正規表現 (54.0)

正規表現 * metachar * expansion * char * anychar * string * str * quantifier * capture * grouping * subexp * selector * anchor * cond * option * encoding * comment * free_format_mode * absenceop * list * specialvar * references

...正規表現
* metachar
* expansion
* char
* anychar
* string
* str
* quantifier
* capture
* grouping
* subexp
* selector
* anchor
* cond
* option
* encoding
* comment
* free_format_mode
* absenceop
* list
* specialvar
* references


正規表現(regular ex...
...のどの場所であるかを知ることができます。

//emlist[][ruby]{
/pat/
%r{pat}
//}

などの正規表現リテラルや Regexp.new などで正規表現
オブジェクトを得ることができます。


===[a:metachar] メタ文字列とリテラル、メタ文字とエスケー...
...

//emlist[][ruby]{
/^.*(\d+)\./.match("Copyright 2013.") # => #<MatchData "Copyright 2013." 1:"3">
/^.*?(\d+)\./.match("Copyright 2013.") # => #<MatchData "Copyright 2013." 1:"2013">
//}

また、ネストしていない括弧の対応を取るためにも使えます。

//emlist[][ruby]{
#...

Rubyの起動 (18.0)

Rubyの起動 * cmd_option * shebang

...Rubyの起動
* cmd_option
* shebang

Rubyインタプリタの起動は以下の書式のコマンドラインにより行います。

ruby [ option ...] [ -- ] [ programfile ] [ argument ...]

ここで、option は後述のcmd_option
のいずれかを指定します。-- は、オプシ...
...

argument に指定した文字列は組み込み定数 Object::ARGV の初
期値として設定されます。標準のシェルがワイルドカードを展開しない環境
(platform/Win32)では、Ruby インタプリタが自前でワイルドカードを展開して
Object::ARGV に設...
...ectory

スクリプト実行前に指定されたディレクトリに移動します。

: -c

スクリプトの内部形式へのコンパイルのみを行い, 実行しません。コンパイル終
了後, 文法エラーが無ければ, "Syntax OK"と出力します。

: --copyright...

NEWS for Ruby 2.4.0 (12.0)

NEWS for Ruby 2.4.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。

...入ができるようになりました 10617
* Symbol#to_proc でメソッド呼び出し元での Refinements が有効になりました 9451
* Object#send や BasicObject#__send__ でメソッドを呼び出したときに Refinements が有効になりました 11476
* 後置 rescue を...
...ソッドの引数内に書けるようになりました 12686
* トップレベルで return を書けるようになりました 4840

=== 組み込みクラスの更新

* Array
* Array#concat 12333
複数の引数を取れるようになりました。
* Array#max, Array#min 1...
...https://github.com/ruby/xmlrpcが新しいリポジトリです。

* Zlib
* Zlib.gzip, Zlib.gunzip を追加 13020

=== C API の更新

* ruby_show_version() will no longer exits the process, if
RUBY_SHOW_COPYRIGHT_TO_DIE is set to 0. This will be the default in
t
he future....