612件ヒット
[1-100件を表示]
(0.071秒)
ライブラリ
- ビルトイン (24)
-
irb
/ cmd / chws (24) -
irb
/ cmd / pushws (36) -
irb
/ context (24) - json (72)
- prettyprint (12)
- rake (48)
-
rexml
/ document (228) -
rinda
/ rinda (60) -
rinda
/ tuplespace (60) - scanf (24)
クラス
-
IRB
:: Context (24) -
IRB
:: ExtendCommand :: ChangeWorkspace (12) -
IRB
:: ExtendCommand :: CurrentWorkingWorkspace (12) -
IRB
:: ExtendCommand :: PopWorkspace (12) -
IRB
:: ExtendCommand :: PushWorkspace (12) -
IRB
:: ExtendCommand :: Workspaces (12) -
JSON
:: State (72) -
ObjectSpace
:: WeakMap (24) - PrettyPrint (12)
-
REXML
:: Attribute (12) -
REXML
:: Attributes (24) -
REXML
:: DocType (12) -
REXML
:: Element (84) -
Rake
:: NameSpace (24) -
Rinda
:: TupleSpace (60) -
Rinda
:: TupleSpaceProxy (60) -
Scanf
:: FormatSpecifier (6) -
Scanf
:: FormatString (6) - String (12)
モジュール
- Kernel (12)
-
REXML
:: Namespace (96) -
Rake
:: TaskManager (12)
キーワード
- [] (24)
- []= (12)
-
add
_ namespace (24) - attribute (12)
-
count
_ space? (6) -
delete
_ namespace (12) - execute (60)
- genspace (12)
-
get
_ attribute _ ns (12) -
has
_ name? (12) -
in
_ namespace (12) -
local
_ name (12) - name (12)
- name= (12)
- namespace (36)
- namespaces (36)
- notify (24)
- prefix (12)
- prefix= (12)
- read (24)
-
read
_ all (24) - scanf (12)
- space= (12)
-
space
_ before (12) -
space
_ before= (12) - take (24)
- tasks (12)
-
to
_ h (12) -
to
_ hash (12) - whitespace (12)
- workspace (12)
- workspace= (12)
- write (24)
検索結果
先頭5件
-
JSON
:: State # space -> String (18126.0) -
JSON 形式の文字列のトークン間に挿入する文字列を返します。
...equire "json"
json_state = JSON::State.new(space: "")
json_state.space # => ""
puts JSON.generate([1, 2, { name: "tanaka", age: 19 }], json_state)
# => [1,2,{"name":"tanaka","age":19}]
json_state = JSON::State.new(space: "\t")
json_state.space # => "\t"
puts JSON.generate([... -
Scanf
:: FormatString # space (18102.0) -
@todo
@todo -
Rake
:: TaskManager # in _ namespace(name) {|name _ space| . . . } -> Array (6202.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"
end
end
//}... -
IRB
:: Context # workspace -> IRB :: WorkSpace (6201.0) -
ライブラリ内部で使用します。
ライブラリ内部で使用します。 -
Kernel
# namespace(name = nil) { . . . } -> Rake :: NameSpace (6201.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 (6201.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/>"
//}... -
JSON
:: State # space=(string) (6126.0) -
JSON 形式の文字列のトークン間に挿入する文字列をセットします。
...[ruby]{
require "json"
json_state = JSON::State.new(space: "")
json_state.space # => ""
puts JSON.generate([1, 2, { name: "tanaka", age: 19 }], json_state)
# => [1,2,{"name":"tanaka","age":19}]
json_state.space = "\t"
json_state.space # => "\t"
puts JSON.generate([1, 2, { n... -
JSON
:: State # space _ before -> String (6126.0) -
JSON 形式の文字列中で JavaScript のオブジェクトを表す部分にある ':' の 前に挿入する文字列を返します。
...on"
json_state = JSON::State.new(space_before: "")
json_state.space_before # => ""
puts JSON.generate([1, 2, { name: "tanaka", age: 19 }], json_state)
# => [1,2,{"name":"tanaka","age":19}]
json_state = JSON::State.new(space_before: " ")
json_state.space_before # => " "
puts... -
JSON
:: State # space _ before=(string) (6126.0) -
JSON 形式の文字列中で JavaScript のオブジェクトを表す部分にある ':' の 前に挿入する文字列をセットします。
...quire "json"
json_state = JSON::State.new(space_before: "")
json_state.space_before # => ""
puts JSON.generate([1, 2, { name: "tanaka", age: 19 }], json_state)
# => [1,2,{"name":"tanaka","age":19}]
json_state.space_before = " "
json_state.space_before # => " "
puts JSON.gen...