552件ヒット
[1-100件を表示]
(0.122秒)
ライブラリ
- ビルトイン (216)
-
irb
/ cmd / help (12) - json (12)
- rake (72)
-
rexml
/ document (216) -
rubygems
/ commands / update _ command (12) -
rubygems
/ specification (12)
クラス
-
Gem
:: Commands :: UpdateCommand (12) -
Gem
:: Specification (12) -
IRB
:: ExtendCommand :: Help (12) - MatchData (12)
- Module (192)
-
REXML
:: Attribute (12) -
REXML
:: Attributes (24) -
REXML
:: DocType (12) -
REXML
:: Element (72) -
Rake
:: NameSpace (24) -
Rake
:: TaskArguments (12) - Regexp (12)
モジュール
- Kernel (36)
-
REXML
:: Namespace (96) -
Rake
:: TaskManager (12)
キーワード
- JSON (12)
- [] (12)
-
add
_ namespace (24) - attribute (12)
-
delete
_ namespace (12) - execute (12)
-
get
_ attribute _ ns (12) -
has
_ name? (12) - import (12)
-
in
_ namespace (12) -
local
_ name (12) - name (12)
- name= (12)
-
named
_ captures (12) - namespace (36)
- namespaces (36)
-
new
_ scope (12) - prefix (12)
- prefix= (12)
- private (48)
-
private
_ class _ method (24) - protected (48)
- public (48)
-
public
_ class _ method (24) - tasks (12)
-
which
_ to _ update (12)
検索結果
先頭5件
-
Regexp
# names -> [String] (21120.0) -
正規表現に含まれる名前付きキャプチャ(named capture)の名前を 文字列の配列で返します。
...正規表現に含まれる名前付きキャプチャ(named capture)の名前を
文字列の配列で返します。
//emlist[例][ruby]{
/(?<foo>.)(?<bar>.)(?<baz>.)/.names
# => ["foo", "bar", "baz"]
/(?<foo>.)(?<foo>.)/.names
# => ["foo"]
/(.)(.)/.names
# => []
//}... -
Kernel
# namespace(name = nil) { . . . } -> Rake :: NameSpace (12401.0) -
新しい名前空間を作成します。
...新しい名前空間を作成します。
与えられたブロックを評価する間は、その名前空間を使用します。
例:
ns = namespace "nested" do
task :run
end
task_run = ns[:run] # find :run in the given namespace.
@see Rake::TaskManager#in_namespace... -
REXML
:: Element # delete _ namespace(namespace = "xmlns") -> self (12401.0) -
名前空間を要素から削除します。
...間を削除します。
@param namespace 削除する名前空間の prefix
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new "<a xmlns:foo='bar' xmlns='twiddle'/>"
doc.root.delete_namespace
doc.to_s # => "<a xmlns:foo='bar'/>"
doc.root.delete_namespace 'foo'
doc.to_s # => "<a/... -
Rake
:: TaskManager # in _ namespace(name) {|name _ space| . . . } -> Array (12301.0) -
与えられた名前の名前空間でブロックを評価します。
...クを評価します。
@param name 名前を指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
namespace :sample do
def hoge
puts "hoge"
end
end
task :test_rake_app do
task.application.in_namespace("sample") do
hoge # => "hoge"... -
REXML
:: Attribute # namespace(arg = nil) -> String | nil (12213.0) -
属性の名前空間の URI を返します。
...@param arg この値を指定すると、その属性の名前空間でなく、arg という名前空間
の URI が返されます。
通常は省略します。
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("xmlns:ns", "http://www.example.......com/ns")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").prefix # => "ns"
p e.attributes.get_attribute("r").namespace # => "http://www.example.com/ns"
//}... -
REXML
:: Attributes # namespaces -> { String => String } (12213.0) -
self の中で宣言されている名前空間の集合を返します。
...します。
返り値は名前空間の prefix をキーとし、URI を値とする
Hash を返します。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2'......att='<'/>
</root>
EOS
a = doc.get_elements("/root/a").first
p doc.root.attributes.namespaces
# => {"foo"=>"http://example.org/foo", "bar"=>"http://example.org/bar"}
p a.attributes.namespaces
# => {}
//}... -
REXML
:: DocType # namespaces -> nil (12201.0) -
nil を返します。
nil を返します。 -
REXML
:: Element # add _ namespace(prefix , uri) -> self (12201.0) -
名前空間を要素に追加します。
...。
引数が2個の場合は prefix と uri を指定します。
引数が1個の場合はデフォルトの namespace の uri を指定します。
既に同じ prefix が存在する場合はそれが上書きされます。
@param prefix 名前空間の prefix
@param uri 名前空間の uri......by]{
require 'rexml/document'
a = REXML::Element.new("a")
a.add_namespace("xmlns:foo", "bar" )
a.add_namespace("foo", "bar") # 上と同じ意味
a.add_namespace("twiddle")
a.to_s # => "<a xmlns:foo='bar' xmlns='twiddle'/>"
a.add_namespace("foo", "baz")
a.to_s # => "<a xmlns:foo='baz' xmlns='twiddl... -
REXML
:: Element # add _ namespace(uri) (12201.0) -
名前空間を要素に追加します。
...。
引数が2個の場合は prefix と uri を指定します。
引数が1個の場合はデフォルトの namespace の uri を指定します。
既に同じ prefix が存在する場合はそれが上書きされます。
@param prefix 名前空間の prefix
@param uri 名前空間の uri......by]{
require 'rexml/document'
a = REXML::Element.new("a")
a.add_namespace("xmlns:foo", "bar" )
a.add_namespace("foo", "bar") # 上と同じ意味
a.add_namespace("twiddle")
a.to_s # => "<a xmlns:foo='bar' xmlns='twiddle'/>"
a.add_namespace("foo", "baz")
a.to_s # => "<a xmlns:foo='baz' xmlns='twiddl...