るりまサーチ

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

別のキーワード

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

ライブラリ

検索結果

<< 1 2 3 ... > >>

Rake::FileList#ext(newext = &#39;&#39;) -> Rake::FileList (24335.0)

各要素に String#ext を適用した新しい Rake::FileList を返します。

...String#ext を適用した新しい Rake::FileList を返します。

//emlist[][ruby]{
# Rakefile での記載例とする

IO.write("test1.rb", "test")
IO.write("test2.rb", "test")

t
ask default: :test_rake_app
t
ask :test_rake_app do
file_list = FileList.new("test1.rb", "test2.rb", "test3.rb")...
...file_list.ext(".erb") # => ["test1.erb", "test2.erb", "test3.erb"]
end
//}

@see String#ext...

rubygems/ext/ext_conf_builder (24000.0)

extconf.rb を元にして拡張ライブラリをビルドするためのクラスを扱うライブラリです。

...extconf.rb を元にして拡張ライブラリをビルドするためのクラスを扱うライブラリです。...

RubyVM::InstructionSequence.load_from_binary_extra_data(binary) -> String (18306.0)

バイナリフォーマットの文字列から埋め込まれたextra_dataを取り出します。

...埋め込まれたextra_dataを取り出します。

//emlist[例][ruby]{
iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
binary = iseq.to_binary("extra_data")
Ruby
VM::InstructionSequence.load_from_binary_extra_data(binary) # => extra_data
//}

@see RubyVM::InstructionSequence#to_binary...

rubygems/ext (18000.0)

拡張ライブラリをビルドするためのライブラリです。

拡張ライブラリをビルドするためのライブラリです。

rubygems/ext/builder (18000.0)

拡張ライブラリをビルドするためのクラスを扱うライブラリです。

拡張ライブラリをビルドするためのクラスを扱うライブラリです。

絞り込み条件を変える

rubygems/ext/configure_builder (18000.0)

configure スクリプトを元に拡張ライブラリをビルドするクラスを扱うライブラリです。

configure スクリプトを元に拡張ライブラリをビルドするクラスを扱うライブラリです。

rubygems/ext/rake_builder (18000.0)

Rake を使用して拡張ライブラリをビルドするためのクラスを扱うライブラリです。

Rake を使用して拡張ライブラリをビルドするためのクラスを扱うライブラリです。

URI::MailTo#to_mailtext -> String (15236.0)

URI オブジェクトからメールテキスト文字列を生成します。

...:
require 'uri'
p mailto = URI.parse("mailto:ruby-list@ruby-lang.org?subject=subscribe&cc=myaddr")
print mailto.to_mailtext

=> #<URI::MailTo:0x20104a0e URL:mailto:ruby-list@ruby-lang.org?subject=subscribe&cc=myaddr>
T
o: ruby-list@ruby-lang.org
Subject: subscribe
Cc: myaddr...

URI::MailTo#to_rfc822text -> String (15236.0)

URI オブジェクトからメールテキスト文字列を生成します。

...:
require 'uri'
p mailto = URI.parse("mailto:ruby-list@ruby-lang.org?subject=subscribe&cc=myaddr")
print mailto.to_mailtext

=> #<URI::MailTo:0x20104a0e URL:mailto:ruby-list@ruby-lang.org?subject=subscribe&cc=myaddr>
T
o: ruby-list@ruby-lang.org
Subject: subscribe
Cc: myaddr...
<< 1 2 3 ... > >>