AZ
Size: a a a
AZ
EK
DG
SU
a
AB
UI
SU
SU
O
sorta_hash:
type: array
items:
type: object
properties:
name:
type: string
value:
type: string
-F "sorta_hash={
"name": "string",
"value": "string"
},{
"name": "string1",
"value": "string1"
}"
optional :sorta_hash, type: Array do
requires :name, type: String
requires :value, type: String
end
-F 'sorta_hash[][name]=name1' \
-F 'sorta_hash[][value]=value1' \
-F 'sorta_hash[][name]=name2' \
-F 'sorta_hash[][value]=value2'
Т
K
every '0 0 1 * *' do
from = Time.current.utc.beginning_of_month.strftime('%Y-%m-%d')
to = Time.current.utc.end_of_month.strftime('%Y-%m-%d')
rake "some_task\[#{from}\, \ #{to}\]"
end
Т
every '0 0 1 * *' do
from = Time.current.utc.beginning_of_month.strftime('%Y-%m-%d')
to = Time.current.utc.end_of_month.strftime('%Y-%m-%d')
rake "some_task\[#{from}\, \ #{to}\]"
end
Т
K
K
KA
KA
K
rake "some_task\['#{from}'\, \ '#{to}'\]"
rake "some_task['#{from}', '#{to}']"